gpt4 book ai didi

firebase - 如何将匿名帐户链接到 Flutter 中的电话号码?

转载 作者:IT王子 更新时间:2023-10-29 06:54:44 25 4
gpt4 key购买 nike

这在 Firebase 身份验证中通常是可能的 described here .
但是,对于 Flutter,只有三种预制链接方法,即 linkWithEmailAndPasswordlinkWithGoogleCredentiallinkWithFacebookCredential

我已经发现对于这个 in Flutter 没有直接的实现.
我想知道目前是否有任何方法可以实现这一目标。

最佳答案

firebaseAuth = FirebaseAuth.instance;

您可以使用 verifyPhoneNumber 发送验证短信并从 codeSent 回调中检索创建 PhoneAuthCredential 所需的 verificationID:

firebaseAuth.verifyPhoneNumber(phoneNumber: ..., codeSent: (verificationId, [_]) async {
// you need to get the SMS code from the user before the next step, e.g. by using a TextField
// in this example that would be stored in [codeRetrieved]
(await firebaseAuth.currentUser()).linkWithCredential(
PhoneAuthProvider.getCredential(verificationId: verificationId, smsCode: codeRetrieved)
);
});

如果用户在 Android 上自动获得验证,您可以使用 verificationCompleted,它会为您提供预配置的凭据:

firebaseAuth.verifyPhoneNumber(..., verificationCompleted: (credential) async {
(await firebaseAuth.currentUser()).linkWithCredential(credential);
});

关于firebase - 如何将匿名帐户链接到 Flutter 中的电话号码?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52598950/

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