android Firebase在成功验证后返回“null”帐户

uyhoqukh  于 2024-01-04  发布在  Android
关注(0)|答案(1)|浏览(166)

为什么Firebase在Google Play验证成功后返回“null”帐户?

  1. class MyActivity : AppCompatActivity() {
  2. override fun onCreate(savedInstanceState: Bundle?) {
  3. [...]
  4. val activity = this
  5. val gso = GoogleSignInOptions
  6. .Builder(GoogleSignInOptions.DEFAULT_GAMES_SIGN_IN)
  7. .requestServerAuthCode("<some-id>.apps.googleusercontent.com")
  8. .build()
  9. val signInClient = GoogleSignIn.getClient(activity, gso)
  10. val acc = GoogleSignIn.getLastSignedInAccount(activity) // This is null
  11. val currentUser = Firebase.auth.currentUser // This is null
  12. signInClient.silentSignIn().addOnCompleteListener(activity) { task ->
  13. if (task.isSuccessful) {
  14. val account = task.result // This is com.google.android.gms.auth.api.signin.GoogleSignInAccount@123456
  15. account.displayName // This is null
  16. account.id // This is null
  17. Firebase.auth.currentUser // Still null
  18. }
  19. }
  20. }
  21. }

字符串
根据文档,如果“isSuccessful”被触发,则用户ID不应为“null”:https://firebase.google.com/docs/auth/android/play-games

ffvjumwh

ffvjumwh1#

事实上,您只能使用Google进行身份验证,但如果您还想使用Firebase产品,那么您也应该在Firebase中进行身份验证。这意味着您应该遵循以下步骤。首先,使用Google登录。一旦身份验证成功,获取Google凭据并将其传递给FirebaseAuth#signInWithCredential(com.google.firebase.auth.AuthCredential)方法。请查看下面的One Tap sign-in and sign-up文档。这里是实现Firebase sign-in with Google的文档。
这里也有一个resource可能会有帮助,对应的repo
虽然上面的解决方案肯定会工作,但请注意,One Tap登录很快就会被弃用。所以你应该考虑Integrate Credential Manager with Sign in with Google

相关问题