gpt4 book ai didi

firebase - flutter + Firebase : how to send email verification

转载 作者:行者123 更新时间:2023-12-03 02:45:22 24 4
gpt4 key购买 nike

我尝试在线阅读,但找不到有关如何使用 sendSignInLinkToEmail() 的答案。
我特别感兴趣的是 actionCodeSettings 是什么以及它应该具有什么值(value)。提前泰。

Future verificationEmail(email) async {
try {
FirebaseAuth.instance.sendSignInLinkToEmail(
email: email,
actionCodeSettings: null
} catch (err) {
print(err);
}
}

最佳答案

[新格式]

_firebaseAuthInstance.sendSignInLinkToEmail(
email: "rocky_balboa@example.com,
actionCodeSettings: ActionCodeSettings(
url: "https://example.page.link/cYk9",
androidPackageName: "com.example.app",
iOSBundleId: "com.example.app",
handleCodeInApp: true,
androidMinimumVersion: "16",
androidInstallApp: true),
);
[已弃用](是的,已经......)
FirebaseAuth.instance.sendSignInLinkToEmail(
email: "example@example.com",
actionCodeSettings: ActionCodeSettings(
url: "https://example.web.app",
android: {
'packageName': "com.example.example",
'installApp': true,
'minimumVersion': '12'
},
iOS: {
'bundleId': "com.example.example",
},
handleCodeInApp: true,
),
);

关于firebase - flutter + Firebase : how to send email verification,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63553161/

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