通过Google Play服务撤消访问权限

时间:2014-07-03 15:55:16

标签: android google-play-services google-drive-android-api

有没有办法撤销通过Google Play服务授予的驱动器访问权限?

参考这篇文章: https://developer.android.com/google/auth/api-client.html

我从我的应用程序中授予了对g盘的访问权限:

mGoogleApiClient = new GoogleApiClient.Builder(this)
.addApi(Drive.API)
.addScope(Drive.SCOPE_FILE)
.addConnectionCallbacks(this)
.addOnConnectionFailedListener(this)
.build();

我的问题是,是否有一种清除g驱动器访问权限的方法

即。无需执行credential.getToken()并对https://accounts.google.com/o/oauth2/revoke?token=进行http调用

我正在寻找类似Drive.DriveApi.revokeAccessAndDisconnect();

的内容

我知道有一个用于g plus,但我找不到一个用于g驱动器。 http://developer.android.com/reference/com/google/android/gms/plus/Account.html

1 个答案:

答案 0 :(得分:0)

是的,有一种方法可以撤销Google云端硬盘范围。

GoogleSignInClient googleSignInClient = buildGoogleSignInClient();
googleSignInClient.revokeAccess().addOnCompleteListener(onCompleteListener);

其中

private GoogleSignInClient buildGoogleSignInClient() {
    GoogleSignInOptions signInOptions =
            new GoogleSignInOptions.Builder(GoogleSignInOptions.DEFAULT_SIGN_IN)
                    .requestScopes(Drive.SCOPE_FILE)
                    .build();
    return GoogleSignIn.getClient(this, signInOptions);
}

有关更多信息,您可以检查此reference