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 许可协议
如果使用 Google 内部共享进行测试,请确保还添加内部共享的 SHA 字符串(设置 - Google Play 控制台中的内部应用程序共享)