为什么我得到 com.google.android.gms.common.api.ApiException: 10:?

新手上路,请多包涵
private void handleSignInResult(Task<GoogleSignInAccount> completedTask) {
    try {
        GoogleSignInAccount account = completedTask.getResult(ApiException.class); //exception is here

        // Signed in successfully, show authenticated UI.
        System.out.println("google token ---> " + account.getIdToken());
    } catch (ApiException e) {
        // The ApiException status code indicates the detailed failure reason.
        // Please refer to the GoogleSignInStatusCodes class reference for more information about this error.
        e.printStackTrace();
    }
}

原文由 Arsen Budumyan 发布,翻译遵循 CC BY-SA 4.0 许可协议

阅读 652
1 个回答

如果使用 Google 内部共享进行测试,请确保还添加内部共享的 SHA 字符串(设置 - Google Play 控制台中的内部应用程序共享)

原文由 marmay 发布,翻译遵循 CC BY-SA 4.0 许可协议

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题