javascript 如何使用Firebase在Next.js中添加OTP过期时间?[副本]

m2xkgtsf  于 2023-05-27  发布在  Java
关注(0)|答案(1)|浏览(129)

此问题已在此处有答案

Extend Firebase SMS Expiration Time(1个答案)
17小时前关闭
如何在下一个js firebase中添加OTP过期时间
我在Firebase文档上搜索,但我无法找到任何关于我问题的解决方案
这是我发送otp的代码

const appVerifier = window.recaptchaVerifier;

const phoneNumber = "+91" + mobile_no;

signInWithPhoneNumber(auth, phoneNumber, appVerifier).then((confirmationResult) => {
    // SMS sent. Prompt user to type the code from the message, then sign the
    // user in with confirmationResult.confirm(code).
    window.confirmationResult = confirmationResult;
    console.log("OTP SENT SUCCESSFULLY...");
    // ...
}).catch((error) => {
    // Error; SMS not sent
       
    console.log("OTP NOT SENT BECAUSE OF ===>", error);
});
8zzbczxx

8zzbczxx1#

以下是更新的信息:
密码重置:密码重置链接的过期时间设置为1小时。
电子邮件变更通知:电子邮件变更通知链接的过期时间设置为6小时。
电子邮件验证:电子邮件验证链接的过期时间设置为3天。
电子邮件链接登录:电子邮件链接登录链接的过期时间设置为6小时。
OTP代码(电话验证):电话身份验证中使用的OTP代码的过期时间设置为15分钟。
请注意,这些过期时间是预定义的,无法修改。此信息已通过Firebase团队支持验证

相关问题