gpt4 book ai didi

java - 获取 Firebase 电话身份验证 OTP 时出错

转载 作者:行者123 更新时间:2023-12-03 10:04:16 25 4
gpt4 key购买 nike

我正在尝试实现 Firebase 电话验证。我已在 Firebase 控制台上启用电话验证。我已生成 keystore 并将 SHA 签名添加到控制台。
依赖项:

dependencies {
def multidex_version = "2.0.1"
implementation platform('com.google.firebase:firebase-bom:26.0.0')
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation 'com.google.firebase:firebase-analytics'
implementation "androidx.multidex:multidex:$multidex_version"
implementation 'com.google.firebase:firebase-auth'
implementation 'com.google.firebase:firebase-core'
implementation 'com.google.firebase:firebase-analytics'
implementation 'com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava'

}
phone_verification.dart
                await FirebaseAuth.instance.verifyPhoneNumber(
phoneNumber: '+1234567890',

verificationCompleted: (PhoneAuthCredential credential) {
print('verificationCompleted');

},
verificationFailed: (FirebaseAuthException e) {
print('verificationFailed');
if (e.code == 'invalid-phone-number') {
print('The provided phone number is not valid.');
}
else {
print('Some error occoured: $e');
}
},
codeSent: (String verificationId, int resendToken) async {
print('codeSent');

// Update the UI - wait for the user to enter the SMS code
String smsCode = '123456';

// Create a PhoneAuthCredential with the code
PhoneAuthCredential phoneAuthCredential = PhoneAuthProvider.credential(verificationId: verificationId, smsCode: smsCode);

},
timeout: const Duration(seconds: 60),
codeAutoRetrievalTimeout: (String verificationId) {
print("Timeout: $verificationId");
},
);
执行上述 block 时,收到以下错误。
控制台输出:
E/FirebaseAuth: [GetAuthDomainTask] Error getting project config. Failed with {
"error": {
"code": 400,
"message": "INVALID_CERT_HASH",
"errors": [
{
"message": "INVALID_CERT_HASH",
"domain": "global",
"reason": "invalid"
}
]
}
}
400
V/FA: Recording user engagement, ms: 1165
E/zza: Failed to get reCAPTCHA token - calling backend without app verification

最佳答案

@CubeRootX 和 @user13864571
您的问题与 SHA1 和 SHA256 key 有关。您必须添加它们以验证您的证书。

  • 您项目的 Firebase 控制台
  • 认证
  • 项目设置(来自项目概览附近的设置按钮)
  • 添加指纹
  • 添加 keystore 的 SHA-1 和 SHA-256 值。

  • 您可以像这样从 gradle 获取 keystore 。

    ./gradlew signingReport


    阅读本文了解更多信息: https://firebase.google.com/docs/auth/android/phone-auth#enable-app-verification

    关于java - 获取 Firebase 电话身份验证 OTP 时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64720643/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com