- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
尝试使用自定义 token 登录 Firebase 帐户时,显示此错误。错误的原因是什么?
07-25 15:04:16.523 2357 811 E Volley : [448] BasicNetwork.performRequest: Unexpected response code 400 for https://www.googleapis.com/identitytoolkit/v3/relyingparty/verifyCustomToken?key={TOKEN_CODE}
07-25 15:04:16.524 2357 2530 I AuthChimeraService: Error description received from server: {
07-25 15:04:16.524 2357 2530 I AuthChimeraService: "error": {
07-25 15:04:16.524 2357 2530 I AuthChimeraService: "errors": [
07-25 15:04:16.524 2357 2530 I AuthChimeraService: {
07-25 15:04:16.524 2357 2530 I AuthChimeraService: "domain": "global",
07-25 15:04:16.524 2357 2530 I AuthChimeraService: "reason": "invalid",
07-25 15:04:16.524 2357 2530 I AuthChimeraService: "message": "CONFIGURATION_NOT_FOUND"
07-25 15:04:16.524 2357 2530 I AuthChimeraService: }
07-25 15:04:16.524 2357 2530 I AuthChimeraService: ],
07-25 15:04:16.524 2357 2530 I AuthChimeraService: "code": 400,
07-25 15:04:16.524 2357 2530 I AuthChimeraService: "message": "CONFIGURATION_NOT_FOUND"
07-25 15:04:16.524 2357 2530 I AuthChimeraService: }
07-25 15:04:16.524 2357 2530 I AuthChimeraService: }
07-25 15:04:16.524 2357 2530 D AuthIntentChimeraService: Finished operation: << dms (350ms elapsed)
我当前的代码
mAuth = FirebaseAuth.getInstance();
mAuth.signInWithCustomToken(mCustomToken)
.addOnCompleteListener(this, new OnCompleteListener<AuthResult>() {
@Override
public void onComplete(@NonNull Task<AuthResult> task) {
Log.d("d", "signInWithCustomToken:onComplete:" + task.isSuccessful());
if (!task.isSuccessful()) {
Log.w("d", "signInWithCustomToken", task.getException());
Toast.makeText(MainActivity.this, "Authentication failed.",
Toast.LENGTH_SHORT).show();
}
}
});
最佳答案
修复了将其添加到 gradle
compile 'com.google.firebase:firebase-core:9.2.1'
@编辑最新版本:
implementation 'com.google.firebase:firebase-core:16.0.1'
关于android - Google API 识别工具包返回 configuration_not_found,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38574782/
我使用 firebase 为我的 flutter 应用程序进行身份验证,我在创建用户时遇到错误,函数 createUserWithEmailAndPassword(email: mail, passw
我能够成功执行 google 签名,当我将 token 传递给 firebase 时,它返回: W/System (20511): Ignoring header X-Firebase-Loca
尝试使用自定义 token 登录 Firebase 帐户时,显示此错误。错误的原因是什么? 07-25 15:04:16.523 2357 811 E Volley : [448] Basic
我目前正在尝试在 Firebase 上创建数据库,但出现以下错误: {"error":{"code":400,"message":"CONFIGURATION_NOT_FOUND","errors":
我正在尝试使用 Google Identity Toolkit 在 Android 设备上构建 Google+ 登录,我遵循了 https://developers.google.com/identi
好的,我得到以下异常。不知道为什么会发生这种情况。我已按照指南如何为谷歌帐户设置身份验证。我尝试搜索谷歌,但没有成功解决此问题。我曾尝试搜索 CONFIGURATION_NOT_FOUND 但在 fi
我是一名优秀的程序员,十分优秀!