不能用新的API连接到Google+



我无法使用开始将Google+集成到您的Android应用程序中。

非常简单,但是使用新的com.google.android.gms:play-services-plus:7.3.0类PlusClient和PlusClient。无法解决。我需要获得用户信息,如:通过电子邮件的头像和姓的url。

你能帮我吗?

p。S:当我添加到gradle dependencies . com.google.android.gms:play-services:6.1.71类PlusClient可以解决,但我超过了方法的限制。当我只添加play-services-plus时,它不起作用

PlusClient。《Bulder》的修订版编号为23,现在google play服务修订版编号为24。

您可以使用

访问Google plus登录
     private GoogleApiClient buildGoogleApiClient() {
    // When we build the GoogleApiClient we specify where connected and
    // connection failed callbacks should be returned, which Google APIs our
    // app uses and which OAuth 2.0 scopes our app requests.
    return new GoogleApiClient.Builder(SigninActivity.this).addConnectionCallbacks(this)
            .addOnConnectionFailedListener(this).addApi(Plus.API, Plus.PlusOptions.builder().build())
            .addScope(Plus.SCOPE_PLUS_LOGIN).build();
  }

在你的activity类中调用这个方法,并像这样分配GoogleApiClient的实例

 GoogleApiClient  mPlusClient = buildGoogleApiClient();

请点击此链接查看完整流程

相关内容

  • 没有找到相关文章

最新更新