2

Google Play Services を通じて付与されたドライブ アクセスを取り消す方法はありますか?

この記事を参照: 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

4

1 に答える 1