How to get Step Up MFA working on react native? #1216
-
|
Hi this code: await authorize({
redirectUrl,
audience: process.env.EXPO_PUBLIC_AUTH0_AUDIENCE || '',
scope: 'profile email trading:enroll-mfa trading:mfa',
additionalParameters: {
custom_exchange_mfa_authentication_id: authenticationId,
},
})Doesn't work. But works well on desktop with: const mfaAccessToken = await getAccessTokenWithPopup({
authorizationParams: {
scope: 'profile email trading:enroll-mfa trading:mfa',
audience: window.location.origin,
custom_exchange_mfa_authentication_id: data.authenticationId,
},
})Using I managed to get an MFA-like box to come up on mobile, but it's the wrong one. It prompts for some mysterious OTP that hasn't been set before (and no email is received): On desktop it works: There is 0 documentation or examples on what So how can we do MFA on mobile? Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
|
Seems like mobile doesn't support Passkey authentication. Which is pretty astonishing. |
Beta Was this translation helpful? Give feedback.
-
|
@dominictobias-bullish for MFA you can refer to the this example. |
Beta Was this translation helpful? Give feedback.


@dominictobias-bullish for MFA you can refer to the this example.