Android Google 原生登录

前言:

  之前写过Android Facebook原生登录,想着既然Facebook登录已经写了,索性把Google 登录也写一下,做一下记录。

首先

  要集成Google登录前首先需要查阅官方文档,当然这个是需要自备梯子的。

注意:Google登录什么需要的客户端ID是web端的ID

其次

  • 1、开始Google登录的接入
    在app下的build.gradle的dependencies 节点下配置Google服务
1
2
3
dependencies {
implementation 'com.google.android.gms:play-services-auth:16.0.0'
}
  • 2、Google登录方法的封装
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
public class GoogleLoginManager {

private static final String TAG = GoogleLoginManager.class.getSimpleName();
/**
* 初始化登录
*@params contenxt 上下文
*@params clientID Google配置分配的客户端ID
*@params selfRequestCode 自定义请求码
*/
public static void initGoogle(Activity context, String clientID, int selfRequestCode) {
GoogleSignInOptions gso = new GoogleSignInOptions.Builder(GoogleSignInOptions.DEFAULT_SIGN_IN)
.requestIdToken(clientID)
.requestEmail()
.build();
GoogleSignInClient mGoogleSignInClient = GoogleSignIn.getClient(context, gso);
Intent signInIntent = mGoogleSignInClient.getSignInIntent();
context.startActivityForResult(signInIntent, selfRequestCode);
}

/**
* 登录回调
*@params requestCode 对应onActivityResult的 requestCode
*@params data 对应onActivityResult的 data
*@params selfRequestCode 对应上面初始化请求的自定义请求码
*@params mListener 登录结果回调
*/
public static void onActivityResult(int requestCode, Intent data, int selfRequestCode,
OnLoginSuccessListener mListener) {
if (requestCode == selfRequestCode) {
Task<GoogleSignInAccount> task = GoogleSignIn.getSignedInAccountFromIntent(data);
handleSignInResult( task, mListener);
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
private static void handleSignInResult(@NonNull Task<GoogleSignInAccount> completedTask,
OnLoginSuccessListener mListener) {
try {
GoogleSignInAccount account = completedTask.getResult(ApiException.class);
String idToken = account.getIdToken();
Log.e(TAG, idToken);
mListener.onSuccessResult(idToken);
} catch (ApiException e) {
e.printStackTrace();
}
}

/**
* 退出登录
*/
public static void GoogleSingOut(Context context, String clientID, final OnGoogleSignOutListener mListener) {
GoogleSignInOptions gso = new GoogleSignInOptions.Builder(GoogleSignInOptions.DEFAULT_SIGN_IN)
.requestIdToken(clientID)
.requestEmail()
.build();
GoogleSignInClient mGoogleSignInClient = GoogleSignIn.getClient(context, gso);
mGoogleSignInClient.signOut().addOnCompleteListener((Activity) context, new OnCompleteListener<Void>() {
@Override
public void onComplete(@NonNull Task<Void> task) {
mListener.onSignOutSuccess();
}
});
}

}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/**
* 退出登录接口
*/
public interface OnGoogleSignOutListener {

void onSignOutSuccess();

}
/**
* 登录回调接口
*/
public interface OnLoginSuccessListener {

void onSuccessResult(String result);

}

最后

好了,上面就是Google登录所需要的所有东西了。完整的登录流程应该是这样的:从Google获取idToken,然后发送到自己的服务器,在服务器验证通过后再回调给客户端。

感想

最近一直在写国外的项目,接触的都是英文文档,在此时才看到自己的英文水平是多么的差,没事还是需要多看看英文的东西。提升下自己的英文水平,以后看到英文文档不至于太头疼。如果想了解更多或者有什么不懂的地方,可以加群493180098
嗯,下一篇可能会写Google支付或者韩国的支付平台OneStore支付