0

我正在使用以下代码从我的 android 应用程序中获取 Authsubtoken;以下是代码:

 GoogleAuthUtil.getToken(myCtx,  "mymail@gmail.com","oauth2:https://www.googleapis.com/auth/userinfo.profile")

使用此代码,我得到以下异常:

com.google.android.gms.auth.UserRecoverableAuthException: NeedPermission

如何克服这个异常?

任何帮助表示赞赏。

4

1 回答 1

1

使用此异常

...
} catch (UserRecoverableAuthIOException e) {
   startActivityForResult(e.getIntent(), REQUEST_AUTHORIZATION);
}
... 

在这里查看更多

https://stackoverflow.com/a/14386248/760489

https://stackoverflow.com/a/15142977/760489

于 2013-04-15T12:31:17.150 回答