Sunday, 21 March 2021

firebase-admin choose password reset link language, i.e. Spanish

I have seen how to set the password reset language in the browser (firebase/auth) with useDeviceLanguage(), however I have not seen how to create the password reset link with firebase-admin

The code with firebase-admin to reset the password is below, but how can you change the language to, say, Spanish? The templates exist already in firebase.

const getPasswordResetLink = async email => {
  // HOW TO CHANGE LANGUAGE? 
  return admin.auth().generatePasswordResetLink(email)
}


from firebase-admin choose password reset link language, i.e. Spanish

No comments:

Post a Comment