firebase send verification email code example

Example 1: firebase sign up with email and password

firebase.auth().createUserWithEmailAndPassword(email, password).catch(function(error) {  // Handle Errors here.  var errorCode = error.code;  var errorMessage = error.message;  // ...});email-password.html

Example 2: how to verify sms token firebase

POST https://www.googleapis.com/identitytoolkit/v3/relyingparty/getAccountInfo?key={FIREBASE_SERVER_KEY}
{
  “idToken”: “eyJhbGciOiJEanNZspytaJL4wDZmu2OcwQujC360AJ_Q”
}

//result
{
  …,
  “users”: [
    {
      …,
      “phoneNumber”: “+351966666666”,
      …
    }
  ]
}

Tags:

Misc Example