A result from a signInWithPhoneNumber call.
// Force a new message to be sentconst result = await firebase.auth().signInWithPhoneNumber('#4423456789');const user = await result.confirm('12345'); Copy
// Force a new message to be sentconst result = await firebase.auth().signInWithPhoneNumber('#4423456789');const user = await result.confirm('12345');
Finishes the sign in flow. Validates a code that was sent to the users device.
The code sent to the users device from Firebase.
The phone number authentication operation's verification ID. This can be used along with the verification code to initialize a phone auth credential.
A result from a signInWithPhoneNumber call.
Example