Google Identity Toolkit会返回CONFIGURATION_NOT_FOUND

时间:2015-10-03 15:07:23

标签: android google-identity-toolkit

我尝试使用Google Identity Toolkit在Android设备上建立Google+登录,我按照https://developers.google.com/identity/toolkit/android/上的快速入门指南,但我反复收到以下错误。

"error": { "errors": [ { "domain": "global", "reason": "invalid", "message": "CONFIGURATION_NOT_FOUND" } ], "code": 400, "message": "CONFIGURATION_NOT_FOUND" } }

任何人都可以帮助我?

4 个答案:

答案 0 :(得分:16)

可能您正在使用 firebase 电子邮件/密码身份验证服务或 firebase 提供的其他一些身份验证服务,但尚未从 firebase 控制台身份验证标签启用它。

我已经通过这种方式解决了这类问题。

enter image description here

答案 1 :(得分:1)

答案 2 :(得分:0)

就我而言,我必须设置此配置:./google-services.json

如此处所述:https://docs.expo.io/guides/setup-native-firebase/#android

答案 3 :(得分:0)

我使用 Firebase auth .signInWithEmailAndPassword(email, password) 并遇到了这个问题。就我而言,就像前面提到的 Kasunaz 一样,启用电子邮件/密码登录方法解决了这个问题。

相关问题