【发布时间】:2019-03-12 12:53:55
【问题描述】:
Google+ API 已于 3 月 7 日关闭,如下所述
https://developers.google.com/+/api-shutdown
这是我在应用程序中使用的代码 sn-p,但该应用程序仍在使用谷歌登录。 另外,我没有收到有关此问题的电子邮件。
callbackManager = CallbackManager.Factory.create();
googleApiClient = new GoogleApiClient.Builder(getActivity())
.addConnectionCallbacks(this)
.addOnConnectionFailedListener(this).addApi(Plus.API, Plus.PlusOptions.builder().build())
.addScope(Plus.SCOPE_PLUS_LOGIN).build();
【问题讨论】:
标签: android google-api google-plus google-api-client google-client