管理员firebase错误:“ admin.auth(...)。generatePasswordResetLink不是函数”

时间:2019-01-31 13:15:54

标签: node.js firebase firebase-authentication firebase-admin

我通过Node.js(nodemailer)和firebase进行了电子邮件服务。

当我在应用程序中招募新用户时,该新用户应该会收到带有链接的欢迎电子邮件,用于重置密码。

现在我需要将firebase admin --generatePasswordResetLink实施到node.js中

  

这行代码有问题,错误在于generatePasswordResetLink()不是函数:

     

admin.auth()。generatePasswordResetLink(user.email,actionCodeSettings)

// Create user
async function createUser(user) {
  firebase
    .auth()
    .createUser({
      email: user.email,
      password: user.password,
      displayName: `${user.firstName} ${user.lastName}`
    })
// After user is created make a email teamplate and send it
    .then(function(userRecord) {
      let resetLink = ''    
      // Welcome email template
      const output = `
        <p>You have access to the Church Mutual Assignment Tool.</p>
        <p>Follow this link to create new password for your account ${userRecord.email}:</p>
        <p>${this.resetLink}</p>
        <p>Thanks,</p>
        <p>Your Church Mutual Assignment Tool team</p>
      `
      let message = {
        from: 'nyik6nntutmq3vz6@ethereal.email',
        to: `${user.email}`,
        subject: 'Welcome to the Church Mutual Assignment Tool',
        text: 'Plaintext version of the message',
        html: output
      }


      // Generate reset password and Send Email
 //===== HERE IS PROBLEM THIS generatePasswordResetLink() "is not a fucntion"====== \\
      admin.auth().generatePasswordResetLink(user.email, actionCodeSettings)
        .then(link => {
          // Send Email
          transport.sendMail(message, (err, info) => {
            if (err) throw new Error('Error with email', err)
          })
          return sendCustomPasswordResetEmail(user.email, user.displayName, link)
        })
        .catch(error => {
          console.log('error', error)
        })
    })
}

1 个答案:

答案 0 :(得分:5)

您最有可能使用的是Node.js Admin SDK版本<版本6.2.0。

在此处查看《 Firebase Admin Node.js SDK发行说明》:https://firebase.google.com/support/release-notes/admin/node。仅在2018年11月(版本6.2.0)中添加了“用于创建密码重置,电子邮件验证和电子邮件链接登录的链接的电子邮件操作链接生成API”。