有没有办法撤销通过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
答案 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