Home > Enterprise >  Is there a list of error codes available for verifyPhoneNumber function?
Is there a list of error codes available for verifyPhoneNumber function?

Time:01-26

Have been trying to find this in the reference docs as well, although can't find the possible error codes. Link here. There are error codes available for other functions such as signInWithEmailAndPassword.

CodePudding user response:

There are no specific error codes for phone number verification. It throws the same FirebaseAuthException, you can find the list here like:

auth/invalid-phone-number
auth/phone-number-already-exists
  • Related