当我第一次创建项目时。它提供了 WEBclientID 和 Web 客户端密码。我删除了该应用程序,因为我做错了什么,但谷歌登录 webclient id 仍然存在,所以我删除了它并创建了新的 android 应用程序,但由于 web 客户端密码,我无法启用谷歌登录。所以请建议我在哪里找到并解决它。请检查下面的图片。提前致谢。

当我第一次创建项目时。它提供了 WEBclientID 和 Web 客户端密码。我删除了该应用程序,因为我做错了什么,但谷歌登录 webclient id 仍然存在,所以我删除了它并创建了新的 android 应用程序,但由于 web 客户端密码,我无法启用谷歌登录。所以请建议我在哪里找到并解决它。请检查下面的图片。提前致谢。

在 react-native android 中。
在firebase中完全删除应用程序(android)后,我遇到了同样的问题。
在firebase中新创建的android应用程序中,我下载google-services.json了它并将其放入android/app/google-services.json我的项目中。
我有问题error code 10.
我已经解决error code 10了两个问题。
1.我发现 webClientId 是错误的,我将来自 Firebase 的 webClientIdAuthentication ---> Signin Method ---> Signin provider of Google login---> Web sdk放在我的项目中(导致错误)。然后我从 google-services.json 检查并从这部分中选择 webClientId
...
"services": {
"appinvite_service": {
"other_platform_oauth_client": [
{
"client_id": "252222667222-26fq87bu3ha705mvbon55s7fffffff.apps.googleusercontent.com", //<-- select this
"client_type": 3
}
]
}
}
...
把它放进去
GoogleSignin.configure({
scopes: ['https://www.googleapis.com/auth/drive.readonly'], // what API you want to access on behalf of the user, default is email and profile
webClientId:"paste here clientId"})
然后它解决了我的问题
2.在其他问题中,我的调试密钥不匹配,在 firebase 中我使用此命令放置了错误的调试 SH1。
keytool -exportcert -list -v -alias androiddebugkey -keystore ~/.android/debug.keystore
切换到android/app/build/outputs/apk/release/app-debug.apk并使用此命令
keytool -list -printcert -jarfile app-debug.apk
两个 SH1 不同,然后将生成的 app-debug.apk 的 SH1 放入 firebase,然后修复错误代码 10 问题。
URL: https://console.firebase.google.com/ Please follow this breadcrumbs
1. Authentication → Google → Enable

2. Click on the Google Enabled link. Then opened the window below.
3. Click on Web SDK configuration
4. We can get Web Client ID here.
5. Copy the Web Client ID from this text box.
最后,我找到了解决问题的方法。我们在 firebase 控制台上创建 android 项目。我想出了创建新 ID 并查看了 Google Console API 凭据。它创建了两个身份验证 ID,一个用于 android,第二个用于 Web 登录。我们需要 Google Web 登录Web 客户端 ID和密码,以便在 Firebase 控制台中启用 Google 登录。现在可以了。谢谢你们的回复。
您可以在 firebase 中找到此客户端密钥。: http: //prntscr.com/jm0d3x
我会尝试访问该网站您的密钥凭据 并检查是否有您的网络密钥。
你可以在 google.service.json 中找到