Google+使用Android API注销,不删除默认帐户



我能够完美登录。我也可以注销。

但当我再次启动登录时,它不会要求我选择帐户并自动使用我登录的同一用户登录。

 private void signOutFromGplus() {
    if (mGoogleApiClient.isConnected()) {
        mGoogleApiClient.disconnect();
        Plus.AccountApi.clearDefaultAccount(mGoogleApiClient);
        mGoogleApiClient.connect();
    }
}
I also tried with revoke access. But did not work for me.

您可以将AccountPicker用于此参考访问AccountPicker

相关内容

  • 没有找到相关文章

最新更新