Android 应用程序集成Google 登录及二次封装

简介: 谷歌登录API:  https://developers.google.com/identity/sign-in/android/ 1、注册并且登录google网站        https://accounts.
谷歌登录API:  https://developers.google.com/identity/sign-in/android/

1、注册并且登录google网站

       https://accounts.google.com/

2、进入google开发者平台创建应用

     https://developers.google.com/mobile/add?platform=android&cntapi=signin&cntapp=Default%20Demo%20App&cntpkg=com.google.samples.quickstart.signin&cnturl=https:%2F%2Fdevelopers.google.com%2Fidentity%2Fsign-in%2Fandroid%2Fstart%3Fconfigured%3Dtrue&cntlbl=Continue%20with%20Try%20Sign-In

3、在开发者平台填写响应的信息,包括 应用名、包名、签名的SHA-1值

     图1

     

      图2

        

      图3

        

 

4、在项目中添加谷歌服务

       4.1、在SDK Manager 里面下载 google service

                

        4.2、在project目录下的build.gradle下添加

                 classpath 'com.google.gms:google-services:2.1.0-alpha4'

              查看最新版本号:https://jcenter.bintray.com/com/google/gms/google-services/

        4.3  在model目录下的build.gradle下添加

               compile 'com.google.android.gms:play-services-auth:8.4.0'

 5、代码实现

         5.1、在布局文件中            

 1  <com.google.android.gms.common.SignInButton
 2             android:id="@+id/google_signIn_bt"
 3             android:layout_width="wrap_content"
 4             android:layout_height="wrap_content" />
 5 
 6         <Button
 7             android:id="@+id/google_loginOut_bt"
 8             android:layout_width="match_parent"
 9             android:layout_height="wrap_content"
10             android:text="google退出登录"
11             android:layout_gravity="center"
12             android:gravity="center"
13             >
14         </Button>

        5.2、java代码

  1 package com.pegasus.map.presentation.ui.activity;
  2 
  3 import android.content.Intent;
  4 import android.os.Bundle;
  5 import android.view.View;
  6 import android.widget.Button;
  7 
  8 import com.google.android.gms.auth.api.Auth;
  9 import com.google.android.gms.auth.api.signin.GoogleSignInAccount;
 10 import com.google.android.gms.auth.api.signin.GoogleSignInOptions;
 11 import com.google.android.gms.auth.api.signin.GoogleSignInResult;
 12 import com.google.android.gms.common.ConnectionResult;
 13 import com.google.android.gms.common.SignInButton;
 14 import com.google.android.gms.common.api.GoogleApiClient;
 15 import com.google.android.gms.common.api.ResultCallback;
 16 import com.google.android.gms.common.api.Status;
 17 import com.pegasus.map.R;
 18 import com.pegasus.map.presentation.ui.base.BaseActivity;
 19 
 20 import butterknife.Bind;
 21 import butterknife.ButterKnife;
 22 
 23 /**
 24  * Created by ${zyj} on 2016/3/24.
 25  * 登录
 26  */
 27 
 28 public class LoginActivity1 extends BaseActivity implements GoogleApiClient.OnConnectionFailedListener , View.OnClickListener  {
 29 
 30     public int RequestCode = 10 ;
 31 
 32     @Bind( R.id.google_signIn_bt )
 33     public SignInButton google_signIn_bt ;
 34 
 35     @Bind( R.id.google_loginOut_bt )
 36     public Button google_loginOut_bt ;
 37 
 38     public GoogleSignInOptions gso ;
 39     public GoogleApiClient mGoogleApiClient ;
 40 
 41     @Override
 42     protected void onCreate(Bundle savedInstanceState) {
 43         super.onCreate(savedInstanceState);
 44         setContentView(R.layout.activity_login);
 45         ButterKnife.bind(this);
 46         init();
 47     }
 48 
 49 
 50     private void init() {
 51         //初始化谷歌登录服务
 52         gso = new GoogleSignInOptions.Builder(GoogleSignInOptions.DEFAULT_SIGN_IN)
 53                 .requestEmail()   //获取邮箱
 54                 .requestId()      //获取id 号
 55                 .requestIdToken("456212545785")  //获取token
 56                 .build();
 57 
 58         // Build a GoogleApiClient with access to GoogleSignIn.API and the options above.
 59         mGoogleApiClient = new GoogleApiClient.Builder( this )
 60                 .enableAutoManage( this , this )
 61                 .addApi(Auth.GOOGLE_SIGN_IN_API, gso)
 62                 .build();
 63 
 64         //登录
 65         google_signIn_bt.setSize(SignInButton.SIZE_STANDARD);
 66         google_signIn_bt.setScopes(gso.getScopeArray());
 67         google_signIn_bt.setOnClickListener(this) ;
 68 
 69         //退出
 70         google_loginOut_bt.setOnClickListener(this) ;
 71 
 72     }
 73 
 74     @Override
 75     protected void onActivityResult(int requestCode, int resultCode, Intent data) {
 76         super.onActivityResult(requestCode, resultCode, data);
 77 
 78         //谷歌登录成功回调
 79         if ( requestCode == RequestCode ) {
 80             GoogleSignInResult result = Auth.GoogleSignInApi.getSignInResultFromIntent(data);
 81             handleSignInResult( result ) ;
 82         }
 83     }
 84 
 85     @Override
 86     public void onConnectionFailed(ConnectionResult connectionResult) {
 87 
 88     }
 89 
 90     @Override
 91     public void onClick(View v) {
 92         switch ( v.getId() ){
 93             case R.id.google_signIn_bt :   //登录
 94                 signIn();
 95                 break;
 96 
 97             case R.id.google_loginOut_bt :
 98                 signOut();
 99                 break;
100         }
101     }
102 
103     /**
104      * 登录
105      */
106     private void signIn() {
107         Intent signInIntent = Auth.GoogleSignInApi.getSignInIntent(mGoogleApiClient);
108         startActivityForResult(signInIntent, RequestCode );
109     }
110 
111     /**
112      * 退出
113      */
114     private void signOut() {
115         Auth.GoogleSignInApi.signOut(mGoogleApiClient).setResultCallback(
116                 new ResultCallback<Status>() {
117                     @Override
118                     public void onResult(Status status) {
119                         // ...
120                     }
121                 });
122     }
123 
124     private void handleSignInResult(GoogleSignInResult result) {
125         if (result.isSuccess()) {
126             // Signed in successfully, show authenticated UI.
127             GoogleSignInAccount acct = result.getSignInAccount();
128             //获取用户名
129             String name = acct.getDisplayName() ;
130             String email = acct.getEmail() ;
131             String token = acct.getIdToken() ;
132             String id = acct.getId() ;
133 
134         } else {
135             // Signed out, show unauthenticated UI.
136         }
137     }
138 
139 }

 

 6、Google SDK 二次封装

         

  1 package com.pegasus.map.presentation.utils;
  2 
  3 import android.content.Intent;
  4 import android.support.v4.app.FragmentActivity;
  5 import android.util.Log;
  6 import android.widget.Toast;
  7 
  8 import com.google.android.gms.auth.api.Auth;
  9 import com.google.android.gms.auth.api.signin.GoogleSignInAccount;
 10 import com.google.android.gms.auth.api.signin.GoogleSignInOptions;
 11 import com.google.android.gms.auth.api.signin.GoogleSignInResult;
 12 import com.google.android.gms.common.api.GoogleApiClient;
 13 import com.google.android.gms.common.api.ResultCallback;
 14 import com.google.android.gms.common.api.Status;
 15 import com.pegasus.map.R;
 16 
 17 /**
 18  * Created by ${zyj} on 2016/3/30.
 19  */
 20 public class GoogleLogin {
 21 
 22     public int requestCode = 10 ;
 23     private FragmentActivity activity ;
 24     public GoogleSignInOptions gso ;
 25     public GoogleApiClient mGoogleApiClient ;
 26     public GoogleApiClient.OnConnectionFailedListener listener ;
 27     private GoogleSignListener googleSignListener ;
 28 
 29     public GoogleLogin(FragmentActivity activity , GoogleApiClient.OnConnectionFailedListener listener ){
 30         this.activity = activity ;
 31         this.listener = listener ;
 32 
 33         //初始化谷歌登录服务
 34         gso = new GoogleSignInOptions.Builder(GoogleSignInOptions.DEFAULT_SIGN_IN)
 35                 .requestEmail()
 36                 .requestId()
 37                 .requestIdToken( activity.getString(R.string.google_server_client_id))
 38                 .requestProfile()
 39                 .build();
 40 
 41         // Build a GoogleApiClient with access to GoogleSignIn.API and the options above.
 42         mGoogleApiClient = new GoogleApiClient.Builder( activity )
 43                 .enableAutoManage( activity , listener )
 44                 .addApi(Auth.GOOGLE_SIGN_IN_API, gso)
 45                 .build();
 46     }
 47 
 48 
 49     /**
 50      * 登录
 51      */
 52     public void signIn() {
 53         Intent signInIntent = Auth.GoogleSignInApi.getSignInIntent(mGoogleApiClient);
 54         activity.startActivityForResult(signInIntent, requestCode);
 55     }
 56 
 57     /**
 58      * 退出登录
 59      */
 60     public void signOut() {
 61         Auth.GoogleSignInApi.signOut(mGoogleApiClient).setResultCallback(
 62                 new ResultCallback<Status>() {
 63                     @Override
 64                     public void onResult(Status status) {
 65                         if ( status.isSuccess() ){
 66                             if ( googleSignListener != null ){
 67                                 googleSignListener.googleLogoutSuccess();
 68                             }
 69                         }else {
 70                             if ( googleSignListener!= null ){
 71                                 googleSignListener.googleLogoutFail();
 72                             }
 73                         }
 74                     }
 75                 });
 76     }
 77 
 78     public String handleSignInResult(GoogleSignInResult result) {
 79         String res = "" ;
 80         if (result.isSuccess()) {
 81             //登录成功
 82             GoogleSignInAccount acct = result.getSignInAccount();
 83             res = "登录成功"
 84                     + "用户名为:" + acct.getDisplayName()
 85                     + "  邮箱为:" + acct.getEmail()
 86                     + " token为:" + acct.getIdToken()
 87                     + " 头像地址为:" + acct.getPhotoUrl()
 88                     + " Id为:" + acct.getId()
 89                     + " GrantedScopes为:" + acct.getGrantedScopes() ;
 90             Log.e("res", "res:"+res);
 91             Toast.makeText( activity, res, Toast.LENGTH_SHORT).show();
 92             if ( googleSignListener != null ){
 93                 googleSignListener.googleLoginSuccess();
 94             }
 95         } else {
 96             // Signed out, show unauthenticated UI.
 97             res = "-1" ;  //-1代表用户退出登录了 , 可以自定义
 98             Toast.makeText( activity , "退出登录", Toast.LENGTH_SHORT).show();
 99             if ( googleSignListener != null ){
100                 googleSignListener.googleLoginFail();
101             }
102         }
103         return res ;
104     }
105 
106 
107     public void setGoogleSignListener( GoogleSignListener googleSignListener ){
108         this.googleSignListener = googleSignListener ;
109     }
110 
111     public interface GoogleSignListener {
112         void googleLoginSuccess();
113         void googleLoginFail() ;
114         void googleLogoutSuccess();
115         void googleLogoutFail() ;
116     }
117 
118 }

   注意:当你把 GoogleLogin 类复制到你项目中的时候,activity.getString(R.string.google_server_client_id)  这一句会报错,可以先不用管,在6.5 部分会做说明

 

  6.1  在activity里使用封装类

   activity 实现   GoogleApiClient.OnConnectionFailedListener , GoogleLogin.GoogleSignListener  两个接口

 6.2

 //初始化谷歌登录服务
 GoogleLogin googleLogin = new GoogleLogin( this , this ) ;
 googleLogin.setGoogleSignListener(this);

 6.3

 1     @Override
 2     protected void onActivityResult(int requestCode, int resultCode, Intent data) {
 3         super.onActivityResult(requestCode, resultCode, data);
 4         
 5         //谷歌登录成功回调
 6         if (requestCode == googleLogin.requestCode ) {
 7             GoogleSignInResult result = Auth.GoogleSignInApi.getSignInResultFromIntent(data);
 8             googleLogin.handleSignInResult( result ) ;
 9         }
10     }

6.4

1 //登录
2 googleLogin.signIn();
3                 
4  //退出
5 googleLogin.signOut();

 6.5 获取 google_server_client_id , 并在strings 里面配置

       https://console.developers.google.com/projectselector/apis/credentials

       在上面的网站里选择

         

        

         点击选择项目,然后选择你创建的app,进入下面一个界面,得到对应的Client ID

       

      

 

 

补充:(2016/8/9)

    有很多人留言或者发私信说一直登陆失败。然后我就自己写了一个demo,核心代码完全复制博客里面的 GoogleLogin (代码见第六个标题, 6、Google SDK 二次封装) 里面的代码,真的是一行代码都没有改,完完全全复制的。最后实现登陆成功,可见博客里面的代码是没有问题的。我在操作过程中,有几个关键的地方提一下。

1、权限问题

    只需要添加联网权限即可   <uses-permission android:name="android.permission.INTERNET"></uses-permission>

 

 2、签名问题

      在开发者后台创建app的时候,需要添加 SHA-1的值,这个值是从你的签名里面获取的。注意,在你运行demo的时候,如果直接运行是不行的,因为直接运行,android studio 会为你的app使用默认签名,这个签名是系统自带的,这个签名的SHA-1值肯定和你真正的签名文件SHA-1值不一样,所以必然会登录失败。 你需要修改你的app debug 时的签名和 发布时的签名一直就好了。 

 

 

         

      

相关文章
|
6天前
|
存储 XML API
安卓应用程序开发:从新手到专家的旅程
【8月更文挑战第33天】在这篇文章中,我们将一起踏上一段激动人心的旅程,探索如何从一个对安卓应用程序开发一无所知的新手,成长为一个能够独立开发复杂应用程序的专家。我们将通过实际案例和代码示例,深入理解安卓开发的各个方面,包括用户界面设计、数据存储、网络通信等。无论你是刚刚入门,还是已经有一些基础,这篇文章都将为你提供宝贵的知识和技能,帮助你在安卓开发的道路上更进一步。
|
3天前
|
XML Java Android开发
探索Android开发之旅:打造你的第一个应用
【9月更文挑战第4天】在这篇专为初学者设计的文章中,我们将一起踏上激动人心的Android开发之旅。从设置开发环境到实现一个简单的“Hello World”应用,每一步都充满了发现和学习。文章将引导你理解Android开发的基础知识,并鼓励你动手实践。让我们开始吧,创造你的第一款Android应用,开启技术世界的新篇章!
|
6天前
|
存储 缓存 搜索推荐
打造个性化天气应用:Android 平台上的天气预报小助手
【9月更文挑战第2天】在这篇文章中,我们将一起探索如何从零开始构建一个简单却功能强大的天气应用。通过这个指南,你将学会如何在 Android 平台上使用 Java 编程语言和相关 API 来创建你自己的天气预报小助手。文章不仅提供了代码示例,还深入讨论了设计思路、用户界面优化以及数据管理等关键方面,旨在帮助初学者理解并实现一个完整的应用项目。
|
8天前
|
搜索推荐 IDE 开发工具
打造个性化安卓应用:从零开始的Flutter之旅
在数字时代的浪潮中,拥有一款个性化且高效的移动应用已成为许多创业者和企业的梦想。本文将引导你使用Flutter框架,从零基础开始构建一个安卓应用,不仅涉及界面设计、功能实现,还包括性能优化的关键技巧。通过简洁易懂的语言和实用的代码示例,我们将一起探索如何让你的应用在众多竞争者中脱颖而出。 【8月更文挑战第31天】
|
8天前
|
存储 开发工具 Android开发
打造你的专属安卓应用:从零开始的Flutter之旅
【8月更文挑战第31天】在数字时代的浪潮中,拥有一款属于自己的应用不仅是梦想的启航,也是技术实力的展现。本文将引导你使用Flutter框架,轻松步入安卓应用的开发世界。无论你是编程新手还是希望拓展技能边界的开发者,跟随这篇指南,你将学会如何搭建开发环境、设计用户界面,并实现基本功能。让我们一起探索代码的力量,开启一段创造之旅吧!
|
8天前
|
移动开发 搜索推荐 开发工具
打造个性化安卓应用:从零开始的Flutter之旅
【8月更文挑战第31天】探索Flutter,一个革命性的UI工具包,它让开发者能够使用一套代码库构建美观、快速的原生应用。本篇文章将带你领略Flutter的魅力,通过实际示例揭示如何快速搭建一个安卓应用。无论你是新手还是有经验的开发者,这篇文章都将为你提供价值。
|
8天前
|
图形学 iOS开发 Android开发
从Unity开发到移动平台制胜攻略:全面解析iOS与Android应用发布流程,助你轻松掌握跨平台发布技巧,打造爆款手游不是梦——性能优化、广告集成与内购设置全包含
【8月更文挑战第31天】本书详细介绍了如何在Unity中设置项目以适应移动设备,涵盖性能优化、集成广告及内购功能等关键步骤。通过具体示例和代码片段,指导读者完成iOS和Android应用的打包与发布,确保应用顺利上线并获得成功。无论是性能调整还是平台特定的操作,本书均提供了全面的解决方案。
53 0
|
8天前
|
开发框架 Dart 搜索推荐
打造个性化安卓应用:从零开始的Flutter之旅
【8月更文挑战第31天】在数字化浪潮中,拥有一款个性化的移动应用是许多人的梦想。本文将引导你使用Flutter框架,快速入门安卓应用开发。我们会一起探索Flutter的基础概念,并通过一个简单的计数器应用示例,展示如何实现交互式界面。无论你是编程新手还是希望扩展技能边界的开发者,这篇文章都将为你开启一扇新窗,让你看到用代码创造美丽事物的无限可能。
|
8天前
|
存储 搜索推荐 Android开发
打造个性化安卓应用:从零开始的Flutter之旅
【8月更文挑战第31天】 在数字时代的浪潮中,移动应用成为连接用户与服务的桥梁。本文将引导你使用Flutter框架,从无到有构建一个具有独特风格的安卓应用,让你在编程的海洋里扬帆起航,探索个性化应用的秘密花园。我们将一步步揭开Flutter的神秘面纱,通过实例代码带你领略它的魅力所在。准备好了吗?让我们一起开启这段激动人心的旅程!

热门文章

最新文章