billybob2
billybob2

Reputation: 701

Firebase Phone Auth Resend SMS

With the javascript api, is there a way to 'resend' the verifcation sms text for Firebase SMS? I can't find a solution for javascript

Upvotes: 0

Views: 3688

Answers (1)

Frank van Puffelen
Frank van Puffelen

Reputation: 599661

Whenever you call firebase.auth().signInWithPhoneNumber(phoneNumber, appVerifier), Firebase will send an SMS to verify that the user has access to that phone number.

See the Firebase guide on sending a verification code to the user's phone and the reference guide on signInWithPhoneNumber.

Upvotes: 1

Related Questions