Android Google登录并获取token(亲测有效)

背景:

Android 需要用到Google的登录授权,用去token给到服务器,服务器再通过token去获取用户信息,实现第三方登录。

我们通过登录之后的email来获取token,不需要server_clientId;如果用server_clientId还需要在google的控制台配置测试的账号,否则登录的时候会返回错误码10.

实现步骤:

1、 手机或者Pad连接可以访问google的网络

2、最外层的build.gradle增加依赖

复制代码
dependencies {
    classpath 'com.google.gms:google-services:4.3.15'
}

app下的build.gradle增加依赖

复制代码
implementation 'com.google.android.gms:play-services-auth:20.6.0'

3、初始化谷歌服务

val googleSignInOptions = GoogleSignInOptions.Builder(GoogleSignInOptions.DEFAULT_SIGN_IN)

.requestEmail() .build()

//这里不要调用requestIdToken

mGoogleSignInClient = GoogleSignIn.getClient(activity, googleSignInOptions)

4、检查google 服务器是否可用,手机是否有环境

复制代码
val isGooglePlayServicesAvailable=
    GoogleApiAvailability.getInstance().isGooglePlayServicesAvailable(activity)

5、如果没有环境,返回,流程结束

复制代码
if (isGooglePlayServicesAvailable!= ConnectionResult.SUCCESS) {
    // 验证是否已在此设备上安装并启用Google Play服务,以及此设备上安装的旧版本是否为此客户端所需的版本
    GoogleApiAvailability.getInstance().makeGooglePlayServicesAvailable(activity)
    return@launchIO
}

6、如果有环境,调用google的登录,调转到第三方app

复制代码
val signInIntent: Intent = mGoogleSignInClient!!.signInIntent
activity.startActivityForResult(
    signInIntent,
    100
)

7、重写Activity的这个方法,然后获取token

复制代码
fun onActivityResult(requestCode: Int, data: Intent?) {
    if (requestCode == 100) {
复制代码
      val completedTask: Task<GoogleSignInAccount> =
    GoogleSignIn.getSignedInAccountFromIntent(data)
val account: GoogleSignInAccount =
    completedTask.getResult(ApiException::class.java)
val status: Task<GoogleSignInAccount> = completedTask
if (!status.isSuccessful) {
    throw Exception(status.exception)
}

Log.d("测试", "account.email: " + account.email)

var loginGoogleRequest = LoginGoogleRequest()
loginGoogleRequest.bizId = CoreConstant.bizId
// Obtain token for access gmail account
var token: String =
GoogleAuthUtil.getToken(
CoreVariable.coreApplication,
account.email!!,
"oauth2:profile email"
)
Log.d("测试", "token= " + token)
}

相关推荐
阿pin1 小时前
Android随笔-Serializable与Parcelable
android·serializable·parcelable
天空之城--1 小时前
Android 事件分发机制深度解析——原理、源码与实战综合总结
android
阿pin2 小时前
Android随笔-AIDL
android·开发语言·aidl
2501_916007473 小时前
Bundle ID 注册与管理 App ID 创建指南 命名规则 权限开关与删除注意事项
android·ios·小程序·https·uni-app·iphone·webview
雨白3 小时前
面向对象六大基本原则实战:从零重构支持引擎切换的网络框架
android·架构
张赐荣4 小时前
Android TalkBack 无障碍优化: 为控件自定义转子导航动作
android·microsoft
天空之城--6 小时前
Android Flutter行业动态与学习参考(2026年8月)
android·flutter
quantdash_cc6 小时前
基于 QuantDash 5 分钟 K 线的网格交易策略参数网格搜索寻优实战
android·开发语言·pandas·量化·quantdash
杉氧8 小时前
原生交互:如何在 Flutter 中嵌入 Android/iOS 原生组件并解决手势冲突
android·flutter·dart
Android打工仔8 小时前
Continuation 的链式关系 —— 一个 suspend 函数如何把结果交还给调用者?
android·kotlin