I want to integrate Multi Factor Authentication (MFA) through Azure Active Directory (AD), I checked its documentation and some code samples, then I knew that Azure AD B2C have some of features which suits my requirement,
NOTE - I only need MFA feature from Azure AD B2C,
I tried this sample code provided in official docs, https://docs.microsoft.com/en-us/azure/active-directory-b2c/active-directory-b2c-tutorials-spa
But I have some of queries:
1) Is there any service in Azure B2C, which can directly provide MFA facility to integrate, without need to register users in Azure AD?
2) In Azure B2C, can I control user flow with information of my website? So that email and phone number will be of my website during user flow. (I am asking about this because according to my plan I am going to integrate it after login process in my website)
3) There are 3 types of account in Azure B2C, (Work account, Guest user, Consumer user), Which user type is most suitable? (I only need MFA for the user, and will require to manage users via Graph or any official API)
4) From where can I decide, which type of user will be registered? because the code which I have tried, doesn't mention about user type, (Actually I want to know that is there any param or option in user-flow, which can decide type of user, which will be registered through this flow)
Any help or suggestions will helpful for me,
Thanks in advance,
sign in
andsign up
, and run it through Azure Portal by clicked on "▶ Run user flow", in that flow if I click onForgot your password?
link, then it redirect me toReply URL
, with a messageThe user has forgotten their password.
, So it is possible to redirect flow toReset Password
, whenever click onForgot your password?
? – Herry ShawnSign in/Sign up
flow, Also please help me to figure out that how can I identify from response that which user was authenticated through Azure MFA, Here is the response at jwt.ms Response, Can I useemails
key to identify authenticated user? Is it reliable? – Herry Shawn