0

there is some way to create a user on firebase without automatic login and firebase-admin? Something like:

auth.createUserAndRetrieveDataWithEmailAndPassword(cd.email,cd.senha).then(user => {
    console.log(user);
  })
  .catch(error => {
    console.log("error");
  });

or

auth.createUserWithEmailAndPassword(cd.email,cd.senha).then(user => {
    console.log(user);
  })
  .catch(error => {
    console.log("error");
  });
Frank van Puffelen
  • 499,950
  • 69
  • 739
  • 734
Jader Costa
  • 197
  • 2
  • 15

0 Answers0