use*_*571 10 java authentication android firebase flutter
我正在尝试实施 Firebase 电话验证。我在 firebase 控制台上启用了电话验证。我已生成密钥库并将 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'
}
Run Code Online (Sandbox Code Playgroud)
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");
},
);
Run Code Online (Sandbox Code Playgroud)
执行上述块时,收到以下错误。控制台输出:
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
Run Code Online (Sandbox Code Playgroud)
@CubeRootX 和 @user13864571
您的问题与 SHA1 和 SHA256 密钥有关。您必须添加它们以验证您的证书。
去
您可以像这样从 gradle 获取密钥库。
./gradlew 签名报告
阅读更多信息:https : //firebase.google.com/docs/auth/android/phone-auth#enable-app-verification
小智 5
错误 400 意味着错误的请求,可能是由于以下三个原因之一造成的:-
在 Firebase 控制台中打开您的项目 -> 转到项目设置 -> 单击添加指纹(位于页面底部) -> 在其中添加 SHA-1 和 SHA-256 值。

您可以按如下方式获取 android studio 项目的 SHA 值:-
点击右上角的 gradle -> 任务 -> android ->signingReport -> 运行signingReort后获取底部的SHA值

如果问题未解决,请按照文档进行操作。
| 归档时间: |
|
| 查看次数: |
6894 次 |
| 最近记录: |