Skip to content
Advertisement

MFA Firebase & React Flow

I am trying to enroll a user with Multifactor authentication with Firebase following this setup guide: https://cloud.google.com/identity-platform/docs/web/mfa

I am struggling to figure out how to have my function wait for the user inputted verification code after the code is sent to the user’s phone (I think this is why the code is erroring.) My current code snippet below will throw this error after I click the Send Verification Code button: error: ‘auth/missing-verification-code’, message: ‘The phone auth credential was created with an empty SMS verification code.’

This is the first time I have implemented a MFA flow , so anyone have ideas on how I should be doing this? Thnaks!

JavaScript

Advertisement

Answer

Figured it out! I wrongly assumed that the verificationId passed back from verifyPhoneNumber() was the raw code and I didn’t want to save that in a local state on client side as I saw that as a security vulnerability. Fortunately the verificationId is not the raw code to be entered, but rather a JWT or something that is abstracted, so I just saved that value in the React state which was then referenced by a separate function getAttemptedCode(values) which is called only after the user clicks submit on the attempted code.

If anyone finds this method I found to be a security vulnerability let me know please!

Below is the updated MFA component, which has changed a bit since I made the original post, but should give the just of what I was trying to achieve!

JavaScript
User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement