Android:
我正在使用GoogleApiClient類訪問Plus API,以便登錄用戶的Google帳戶。我已閱讀來自開發者網站上的文檔,我使用此代碼登錄甌用戶無法註銷Google+
private void signOutFromGplus() //Sign out from Google
{
if (mGoogleApiClient.isConnected())
{
Plus.AccountApi.clearDefaultAccount(mGoogleApiClient);
Plus.AccountApi.revokeAccessAndDisconnect(mGoogleApiClient)
.setResultCallback(new ResultCallback<Status>()
{
@Override
public void onResult(Status status)
{
id.setText("User Disconnected");
}
});
}
}
呀,撤銷訪問太多,但它仍然無法正常工作。 我應該如何斷開用戶連接?
「不工作」是什麼樣的? –
只用'mGoogleApiClient.clearDefaultAccount(); mGoogleApiClient.disconnect();' –