截至3月7日,Google+ API已关闭,需要更新哪些内容?

问题描述 投票:1回答:1

截至3月7日,Google+ API已关闭,如下所述

https://developers.google.com/+/api-shutdown

这是我在应用程序中使用的代码片段,但应用程序仍在使用谷歌登录。此外,我没有收到有关此问题的电子邮件。

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
1个回答
1
投票

Google Sign-In提供了一些与用户相关的数据。我不知道所有数据Google+都会公开,但您可以查看Google登录或Google身份验证提供的内容。

Try Sign-In for Android

Start Integrating Google Sign-In into Your Android App

Plus API Deprecation Notes

Google Plus停止通过电子邮件通知用户和开发者。它也被许多科技新闻博客和网站所涵盖。

© www.soinside.com 2019 - 2024. All rights reserved.