为了账号安全,请及时绑定邮箱和手机立即绑定

Firebase 验证和重置密码,无需发送单独的邮件

Firebase 验证和重置密码,无需发送单独的邮件

弑天下 2022-07-21 22:08:44
作为离线用户创建的一部分,我想从我的后端服务器创建一个帐户并向用户发送验证邮件。但是当用户点击验证链接时,我还想显示一个屏幕来设置他的密码。在现有的网络应用程序中,我有单独的流程来处理验证和重置密码。但它们是独立的流程。从以下文档 中,我可以看到有一个名为 mode 的参数来标识操作。使用它,我们目前正在处理验证和重置密码操作。但是有没有办法有一个自定义模式或一些方法来识别用户在验证后必须被带到不同的屏幕。我能想到的一种解决方法是使用 continueUrl (可能使用自定义方案)。不确定这是否会完美运行。有人可以分享他们对此的想法。
查看完整描述

1 回答

?
阿波罗的战车

TA贡献1862条经验 获得超6个赞

使用continueUrl确实是正确的方法。根据mode您可以决定要处理的操作,然后您可以continueUrl在用户执行相应操作后重定向到。


例如,您参考的文档// TODO: If a continue URL is available...显示了以下示例(注意注释):


function handleVerifyEmail(auth, actionCode, continueUrl, lang) {

  // Localize the UI to the selected language as determined by the lang

  // parameter.

  // Try to apply the email verification code.

  auth.applyActionCode(actionCode).then(function(resp) {

    // Email address has been verified.


    // TODO: Display a confirmation message to the user.

    // You could also provide the user with a link back to the app.


    // TODO: If a continue URL is available, display a button which on

    // click redirects the user back to the app via continueUrl with

    // additional state determined from that URL's parameters.

  }).catch(function(error) {

    // Code is invalid or expired. Ask the user to verify their email address

    // again.

  });

}


查看完整回答
反对 回复 2022-07-21
  • 1 回答
  • 0 关注
  • 120 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信