GoogleSignIn 重复登录弹出窗口,并且不会转到 Android API 30 的 onActivityResult



我使用Android应用程序的GoogleSignIn实现了Google SSO。我使用了登录意图并启动ActivityForResult方法:身份验证流如下所示:

val gso = GoogleSignInOptions.Builder(GoogleSignInOptions.DEFAULT_SIGN_IN)
.requestIdToken("client_id")
.requestServerAuthCode("client_id", true)
.requestScopes(Scope("email profile openid https://www.googleapis.com/auth/youtube https://www.googleapis.com/auth/youtube.readonly"))
.requestEmail()
.build()
binding.googleSignInButton.setOnClickListener{
Timber.i("${gso.scopes}")
val signInIntent = GoogleSignIn.getClient(this, gso)?.signInIntent
startActivityForResult(signInIntent, RC_SIGN_IN)
}
override fun onActivityResult(requestCode: Int, resultCode: Int, data: Intent?) {
.....doesn't matter, I tested. never reached here.
}

这种方法在我测试的模拟器设备API 29上运行良好。但是,在API 30、Pixel 3模拟器上,登录确认屏幕将在短时间加载后重复出现:在此处输入图像描述在我点击";允许";,屏幕将变成一个小的加载屏幕,并且该确认屏幕将重新出现。

从未达到onActivityResult

此外:仅适用于API 30:在我在谷歌开发者控制台的OAuth同意屏幕中添加youtube api范围之前,我得到了以下行为:

  • 第一个确认页面显示我请求的所有作用域在我的gso
  • 我单击"允许">
  • 第二个确认页面仅显示基本作用域[openid电子邮件配置文件](youtube API作用域消失(
  • 我单击"允许">
  • 身份验证流实际上已经完成,但现在我只有基本的作用域

我还在清单中添加了查询:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.myapp">

<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.INTERNET" />
<queries>
<intent>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="com.example.myapp" />
</intent>
</queries>
<application
android:allowBackup="true"
android:fullBackupContent="@xml/backup_descriptor"
android:allowClearUserData="true"
android:name="com.example.myapp.application.YoutubeApplication"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<!--        Main Activity-->
<activity
android:name="com.example.myapp.application.activities.MainActivity"
android:label="@string/app_name"
android:launchMode="singleTop" />
<!--        Login Activity-->
<activity
android:name="com.example.myapp.application.activities.LoginActivity"
android:label="@string/app_name"
android:windowSoftInputMode="stateHidden">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.BROWSABLE" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="com.example.myapp"/>
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>

很明显,早期版本中存在一些错误配置,我在模拟器上重新安装了该应用程序,它解决了问题。

相关内容

  • 没有找到相关文章

最新更新