Android Google Plus登录问题。 handleSignInResult返回False [英] Android Google Plus sign in issue. handleSignInResult returns False

查看:760
本文介绍了Android Google Plus登录问题。 handleSignInResult返回False的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在整合Google+ Signin功能时遇到了一些问题。到目前为止,我已经使用debug.keystore的密钥工具生成了SHA1并在Google云上粘贴了SHA1,并在/ app中集成了所有必要的G + Sign in API模块和代码,其效果良好,生成并将google-services.json放置在/ app中开发者控制台,但现在只有一个小故障,我面对自许多天/周,即当我尝试做设备调试,并且每当我点击G +登录我在LogCat中得到以下错误:


E / GMPM:getGoogleAppId失败,状态为10



E / GMPM:上传不可行。应用测量已禁用。

D / SignInActivity:handleSignInResult:false

这个handleSignInResult返回False而且无法登录以进一步获取数据。如果你们中的任何一个人遇到过这种情况,请在这里帮助我。这个小障碍相当令人发狂。



谢谢大家。

解决方案

您是否使用Plus.API或Auth.GOOGLE_SIGN_IN_API?后者是最新改版的。点击此处查看:
https://developers.google .com / identity /登录/ android /登录






如果您使用的是Auth。 GOOGLE_SIGN_IN_API:

在onActivityResult中,使用类似于下面的代码,您可以获得状态代码,该代码由GoogleSignInStatusCodes定义: https://developers.google.com/android/reference/com/google/android / gms / auth / api / signin / GoogleSignInStatusCodes

  @Override 
public void onActivityResult(int requestCode ,int resultCode,Intent data){
super.onActivityResult(requestCode,resultCode,data);

//从GoogleSignInApi.getSignInIntent(...)启动Intent返回的结果;
if(requestCode == RC_SIGN_IN){
GoogleSignInResult result = Auth.GoogleSignInApi.getSignInResultFromIntent(data);
int statusCode = result.getStatus()。getStatusCode();


最常见的问题是缺少正确的OAuth2客户端注册。 (不幸的是,现在,状态代码是INTERNAL_ERROR 8,这是没有用的。)看看这个线程:
发生了INTERNAL_ERROR当来自GoogleSignInOptions Android的requestEmail

I've been facing some issues while integrating Google+ Signin functionality. So far, i've integrated all the necessary G+ Sign in API modules and codes which works good, generated and placed the google-services.json within /app after generating SHA1 using keytool of debug.keystore and pasted the SHA1 on the google cloud developer console, but now there's only one glitch i am facing since many days/weeks i.e. when i try to do device debuggin and whenever i click on "G+ Sign In" i get the following error in LogCat:

E/GMPM: getGoogleAppId failed with status: 10

E/GMPM: Uploading is not possible. App measurement disabled.

D/SignInActivity: handleSignInResult:false

This handleSignInResult is returning False all the time and not able to sign in to fetch data further. If anyone of you have ever faced such situation please help me out here. This small obstacle is pretty maddening.

Thank you everyone.

解决方案

Are you using Plus.API or Auth.GOOGLE_SIGN_IN_API? The latter is the latest revamped one. Check it out here: https://developers.google.com/identity/sign-in/android/sign-in


If you are using Auth.GOOGLE_SIGN_IN_API:

In onActivityResult, use code similar to below and you can get a status code, which is defined by GoogleSignInStatusCodes: https://developers.google.com/android/reference/com/google/android/gms/auth/api/signin/GoogleSignInStatusCodes

@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
    super.onActivityResult(requestCode, resultCode, data);

    // Result returned from launching the Intent from GoogleSignInApi.getSignInIntent(...);
    if (requestCode == RC_SIGN_IN) {
        GoogleSignInResult result = Auth.GoogleSignInApi.getSignInResultFromIntent(data);
        int statusCode = result.getStatus().getStatusCode();
    }
}

The most common issue is missing the right OAuth2 client registration. (Unfortunately, for now, the status code is INTERNAL_ERROR 8, which is not helpful. ) E.g. Take a look at this thread: Occured an INTERNAL_ERROR when requestEmail from GoogleSignInOptions Android

这篇关于Android Google Plus登录问题。 handleSignInResult返回False的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆