Firebase : How to send a password reset email backend with NodeJs
I'm trying to impliment the code as found here: https://firebase.google.com/docs/auth/web/manage-users#send_a_password_reset_email var auth = firebase.auth(); var emailAddress = "user@example.com"; auth.sendPasswordResetEmail(emailAddress).then(function() { // Email sent. }).catch(function(error) { // An error happened. }); But I can't find the sendPasswordResetEmail method in firebase admin. Anyway I can do this on the backend? ORIGINAL JULY 2018 ANSWER: The sendPasswordResetEmail() method is a method from the client-side auth module, and you're right, the Admin-SDK doesn't have it - or