我有一个支持使用 Google 登录的 Android 应用程序PlusClient
。连接后,我使用 an 获取身份验证令牌AsyncTask
,GoogleAuthUtil.getToken
方法如下:
私人无效 fetchAuthToken() { AsyncTask 任务 = 新 AsyncTask() {
@Override
protected String doInBackground(Void... params) {
String token = null;
String scope = "oauth2: https://www.googleapis.com/auth/plus.login https://www.googleapis.com/auth/userinfo.profile https://www.googleapis.com/auth/userinfo.email";//"oauth2: "+ Scopes.PLUS_PROFILE;
Bundle appActivities = new Bundle();
appActivities.putString(GoogleAuthUtil.KEY_REQUEST_VISIBLE_ACTIVITIES, visiblaeActivities);
try {
token = GoogleAuthUtil.getToken(Login.instance.context, mPlusClient.getAccountName(), scope, appActivities);
} catch (UserRecoverableAuthException e) {
loginActivity.startActivityForResult(e.getIntent(), REQUSET_TOKEN_PERMISSIONS_RESLOVE_ERR);
} catch (IOException e) {
e.printStackTrace();
} catch (GoogleAuthException e) {
e.printStackTrace();
}
return token;
}
这很好用,然后我将令牌发送到我在 node.js 中的后端,在那里,我尝试使用这个请求从谷歌获取用户详细信息:
https://www.googleapis.com/oauth2/v2/userinfo?access_token=' + access_token
然后我得到用户的详细信息,一切都是 Hunky Dory。问题是,有时我会收到令牌无效的错误,如下所示:
“错误”:{“错误”:[{“域”:“全局”,“原因”:“必需”,“消息”:“需要登录”,“locationType”:“标题”,“位置”:“授权" } ], "code": 401, "message": "需要登录" } }
我的猜测是有人试图用谷歌登录,但由于某种原因无法连接。这很难调试,因为它偶尔会发生,并且大多数用户都成功登录。任何人?
PS
我只在用户连接后获取令牌,即 - 我fetchAuthToken()
在onConnected
回调中调用,所以用户肯定在那时登录