Google plus =>删除对应用的访问权限

时间:2014-07-18 13:49:16

标签: android google-app-engine google-plus google-oauth

我正在创建一个App Engine项目,我希望通过Google+进行身份验证访问。

我现在以这种方式从用户那里获取令牌:

try {
    String G_PLUS_SCOPE = "oauth2:https://www.googleapis.com/auth/plus.me";
    String USERINFO_SCOPE ="https://www.googleapis.com/auth/userinfo.profile";
    String SCOPES = G_PLUS_SCOPE + " " + USERINFO_SCOPE;
    token = GoogleAuthUtil.getToken(MainScreenActivity.this, mAccount.name, SCOPES);
} catch (UserRecoverableAuthException e) {
    startActivityForResult(e.getIntent(), 3);
}

这样可行,如果我没有权限,我会捕获UserRecoverableAuthException并向用户询问StartActivityForResult()

但是我想再测试一下,找了一种撤销访问权限的方法,但我的应用程序在这里找不到:https://security.google.com/settings/security/permissions

如何撤销访问权限?

0 个答案:

没有答案