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
  • 565,676
  • 79
  • 828
  • 807
Jader Costa
  • 307
  • 3
  • 16

0 Answers0