Hi-
I’ve inherited a legacy application that a I need to emulate. Here’s the gist of how it works
-User initiates login process
-Vendor (eg, Website) sends SAML request to IdP
-Idp redirects user to different third party Login interface (with custom data in a token to keep track of user)
-user logs in
-Third party service redirects user to back to IdP (with user id and authentication response)
-IdP service builds SAML response (using customer token to identify user).
-IdP returns user to ACS SAML response
-user is logged in
It’s essentially a typical login flow using a custom database EXCEPT instead of calling custom DB to authenticate users (via the Login action script), I need to route the user to the third party login interface, then be able to continue their request in auth0, after they are returned from the login interface.
I realize this isn’t best practice, but it’s what I need to do. Anybody know if this is workable on AuthO? Ideally, something like a pre-login action that allows a redirect and has a continue hook is what I’m looking for. Not sure that’s available…