Hello there!
I have an Auth0 fully login process in React Native handled by the Auth0 sdk working fine.
I would like to get rid of part of the sdk WebView experience having basically 2 different flows according to the user email domain, first one completely in React Native + Auth0 Apis and the second one using React Native for the email and Auth0 SDK for possibile SSO.
According to the article auth0-universal-login/identifier-first we could have two possible different login modes:
- When a user enters a corporate email (for example, user@acme.com), you can redirect them to acme.com’s corporate login page.
- If a user enters an email for a personal account, you can prompt them for their password.
the question correlated without an answer yet are:
- How can I have this custom email control by Aut0 API?
- Using the same example above, After the email control how can I use the Auth0 SDK to prompt the acme.com’s corporate login page?
I can see similar questions but any suggestions about how to achieve through APIs
thanks for the possibile suggestions