androidx.credentials.exceptions.GetCredentialCancellationException:活动被用户取消

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

尝试使用凭据管理器在我的android应用中使用Google Button登录,但登录显示Activity is cancelled by the user当从弹出窗口中选择gmail帐户时。但它显示错误为androidx.credentials.exceptions.GetCredentialCancellationException:Activity is cancelled by the user
在这里,我在GCP中使用了web_client_id,同一个应用程序有两个Android ClientID。
所以我已经删除了AppSigningKey(SHA-1)可用的client_id,并保留了已经可用的SHA-1(即)上传密钥库(SHA-1)

  1. val googleIdOption: GetSignInWithGoogleOption = GetSignInWithGoogleOption.Builder(WEB_CLIENT_ID).build()
  2. val request: GetCredentialRequest = GetCredentialRequest.Builder().addCredentialOption(googleIdOption).build()
  3. R.id.btn_googleSignUp -> {
  4. val credentialManager = CredentialManager.create(this@SignUpActivity)
  5. coroutineScope.launch {
  6. try {
  7. Log.e("request.. ===", request.toString())
  8. val result = credentialManager.getCredential(
  9. request = request,
  10. context = this@SignUpActivity,
  11. )
  12. handleSignIn(result)
  13. } catch (e: GetCredentialCancellationException) {
  14. Log.e("CredentialCancelException ===", e.message.toString())
  15. } catch (e: GetCredentialException) {
  16. Log.e("GetCredential ===", e.message.toString())
  17. } catch (e: Exception) {
  18. Log.e("Exception ===", e.message.toString())
  19. }
  20. }
  21. }
  22. fun handleSignIn(result: GetCredentialResponse) {
  23. // Handle the successfully returned credential.
  24. val credential = result.credential
  25. when (credential) {
  26. is PublicKeyCredential -> {
  27. // Share responseJson such as a GetCredentialResponse on your server to
  28. // validate and authenticate
  29. //responseJson = credential.authenticationResponseJson
  30. }
  31. is PasswordCredential -> {
  32. // Send ID and password to your server to validate and authenticate.
  33. val username = credential.id
  34. val password = credential.password
  35. }
  36. is CustomCredential -> {
  37. if (credential.type == GoogleIdTokenCredential.TYPE_GOOGLE_ID_TOKEN_CREDENTIAL) {
  38. try {
  39. // Use googleIdTokenCredential and extract id to validate and
  40. // authenticate on your server.
  41. val googleIdTokenCredential = GoogleIdTokenCredential
  42. .createFrom(credential.data)
  43. } catch (e: GoogleIdTokenParsingException) {
  44. Log.e("Invalid GoogleId", "Received an invalid google id token response", e)
  45. }
  46. } else {
  47. // Catch any unrecognized custom credential type here.
  48. Log.e("Unexpected", "Unexpected type of credential")
  49. }
  50. }
  51. else -> {
  52. // Catch any unrecognized credential type here.
  53. Log.e("Invalid GoogleID", "Unexpected type of credential")
  54. }
  55. }
  56. }

字符串

hgqdbh6s

hgqdbh6s1#

好的,我找到了错误
在开始之前,我想指出的是,这种错误我调查tipically不与Android代码本身的关系,更多的是关于你使用的CLIENT_SERVER_ID和Google Play控制台凭据。

  • 对我来说,
  • 对于其他可能是,他们需要添加一个用户作为测试者在oAuth同意屏幕,如这里所示https://dev.to/hackmamba/a-beginners-guide-to-oauth-20-with-google-sign-in-enhance-android-app-authentication-2mhi#set-up-google-oauth-20(不是我的情况下,因为我的服务器是在prod)

我的解决方案:
我使用WEB_SERVER_ID(而不是android ID)创建GetSignInWithGoogleOption,这是正确的,但也有必要在Google Play控制台中为运行的应用程序创建android凭据
在我的情况下,我有一个“由谷歌服务自动创建”的Android凭据,我认为这是正确的,但它是为另一个开发人员在过去创建的,所以我需要为我自己创建一个
所以我去了Google Play控制台,点击Create Credential -> OAuth Client ID,创建了一个“Android application type”。Package是你可以在manifest.xml中找到的包名,SHA1是调试包名(因为我没有生产包)。你的设备的SHA1可以使用这个命令找到(替换路径):
keytool -keystore path-to-debug-keystore -list -v
对于MAC,将是:
keytool -keystore ~/.android/debug.keystore -list -v
该调试密钥库的密码是“android”
帮助解决此问题的文档如下:https://support.google.com/cloud/answer/6158849?hl=es-419#installedapplications&android&zippy=%2Cnative-applications%2Candroid

展开查看全部

相关问题