当我尝试使用Android登录时使用Google+登录授权Azure移动服务时,我收到以下错误。
com.microsoft.windowsazure.mobileservices.MobileServiceException:
{"code":401,"error":"Error: Invalid token format. Expected Envelope.Claims.Signature."}
我的授权码如下所示。
id_token = GoogleAuthUtil.getToken( ParentActivity.this, user_mailAddress,
"oauth2:" + Scopes.PLUS_LOGIN + " https://www.googleapis.com/auth/plus.profile.emails.read" );
sharedPrefencesHelper.setActiveMailAddress( user_mailAddress );
// sharedPrefencesHelper.setActiveUserName( user_name );
// sharedPrefencesHelper.setActiveUserSurname( user_surname );
sharedPrefencesHelper.setUserConnectStatement( GOOGLE_CONNECT );
} catch ( UserRecoverableAuthException e ) {
startActivityForResult( e.getIntent(), RC_SIGN_IN );
} catch ( IOException | GoogleAuthException e ) {
e.printStackTrace();
}
JsonObject user = new JsonObject();
user.addProperty( "id_token", id_token );
mClient().login( MobileServiceAuthenticationProvider.Google, user, new UserAuthenticationCallback() {
@Override
public void onCompleted( MobileServiceUser user, Exception exception, ServiceFilterResponse response ) {
if ( exception == null ) {
syncronUserInformations( user_mailAddress );
} else {
exception.printStackTrace();
// TODO Azure login olurken bir hata
}
}
} );
}
我使用facebook完成了授权,我正在使用谷歌播放服务7.3.0
答案 0 :(得分:0)
id_token
只能通过服务器端Web登录获取。您使用的范围会获得OAuth令牌,该令牌与id_token
不同。要获得id_token
,您需要使用Web应用程序客户端ID使用不同的范围。
// Create 'Client ID for web application' at https://console.developers.google.com
String web_client_id = "1234567890-abcdefghijklmnopqrstuvq.apps.googleusercontent.com";
id_token = GoogleAuthUtil.getToken( ParentActivity.this, user_mailAddress,
"audience:server:client_id:" + web_client_id);
其余的代码现在应该可以使用实际的id_token
值。