2017-10-06 31 views

回答

0

火基地提供的选项中重新设置用户 的密码,这个查询会发送一个网址为正在重置密码的用户的邮件编号

var auth = firebase.auth(); 
var emailAddress = "<Mail_id >"; 

auth.sendPasswordResetEmail(emailAddress).then(function() { 
    // Email sent. 
    console.log("welcome") 
}).catch(function(error) { 
    // An error happened. 
});