Firebase自定义操作网址中断验证

问题描述 投票:0回答:1

我没有尝试在Firebase身份验证中验证任何帐户并更改操作URL来进行电子邮件验证,现在,当用户单击操作链接时,它并不会验证用户,并且该操作链接没有重置按钮。我尝试输入其占位符值,但没有用。有人知道我该如何解决?还是我必须执行任何其他步骤才能真正验证用户。

firebase.auth().createUserWithEmailAndPassword(this.email, this.password)
        .then(cred => {
          ref.set({
            username: this.username,
            avatar: this.signAvatar,
            user_id: cred.user.uid,
            villaComments: [],
            ratedVillas: []
          })
        }).then(() => {
          firebase.auth().onAuthStateChanged(function(user) {
  if (user) {
          user.sendEmailVerification();
           } })
javascript firebase firebase-authentication nuxt.js
1个回答
0
投票
我打错了字。当我写旧值时,它起作用了。
© www.soinside.com 2019 - 2024. All rights reserved.