google 登录失败,并显示 [错误:DEVELOPER_ERROR]

问题描述 投票:0回答:3
I am trying to google sign-in with @react-native-community/google-signing package 

我已经在 Firebase 控制台上添加了指纹,几乎我已经完成了对 google 登录很重要的所有配置步骤,例如在 Firebase 控制台上启用 google-signin 并在 `GoogleSignin.configure({ webClientId: 'weClientId'

});`等 但我仍然面对开发人员:-[错误:DEVELOPER_ERROR]

请为我糟糕的英语道歉并给我指导,以便我能够摆脱这个错误

android firebase react-native
3个回答
0
投票
  1. 检查您的 build.gradle 文件在 android ->signingConfigs 中的密码是否正确。
  2. 如果您确定已在 firebase 控制台上添加了正确的 SHA1(尝试查看您获得 SHA1 的 .keystore 文件是否位于 android/app 内),请参阅 https://stackoverflow.com/a/ 72383211/11770191

0
投票

对于生产,请确保将应用程序

play.google.com/console
signing
>
App signing key certificate
>
SHA-1 certificate fingerprint
添加到您的 Firebase 指纹中。 enter image description here


0
投票

使用此命令获取您真正的 SHA-1

cd android && keytool -list -v -keystore app/debug.keystore

密码是:android

将其放在 Google 上的 Android 钥匙上

© www.soinside.com 2019 - 2024. All rights reserved.