You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In a ResponseMicroService I'd like to redirect to an additional backend to prove the LoA (Level of Assurance).
Using Redirect("/additiona-backend") doesn't work as it has already cleared the data from the successful auth. Therefore backend_state = context.state[self.name] throws an error.
In short, I first want the user to authenticate with Entra (SAML) and after that they need to make an additional authentication using OIDC with a separate backend.
Any pointers are much appreciated
The text was updated successfully, but these errors were encountered:
In a
ResponseMicroService
I'd like to redirect to an additional backend to prove the LoA (Level of Assurance).Using
Redirect("/additiona-backend")
doesn't work as it has already cleared the data from the successful auth. Thereforebackend_state = context.state[self.name]
throws an error.In short, I first want the user to authenticate with Entra (SAML) and after that they need to make an additional authentication using OIDC with a separate backend.
Any pointers are much appreciated
The text was updated successfully, but these errors were encountered: