We have configured Client App to use IdentityServer3 authentication via OpenID Connect protocol (it's ASP.NET MVC App that uses OWIN middleware to support OIDC).
The IdentityServer3 itself is configured to use both local login and external login (Azure AD, for instance).
In the regular flow once App need to authenticate user it redirects him to the IdentityServer3 login screen - it's fine. But in some cases, on per-request basis, I want to bypass login screen by somehow letting IdentityServer3 know that user want to login with specific external identity provider right away.
Is that possible to do?
Just found the solution in the IdentityServer3's Authorization/Authentication Endpoint documentation!
How to pass additional parameters using OWIN OpenID Connect middleware: https://katanaproject.codeplex.com/workitem/325
Here is the sample of the authorization request:
When you configure identtyserver with external provider, In AuthenticationOptions you typically set
AutheticationType
to some string. Like belowThen in client application you can set the
acrvalues
to Authentication-type like belowAlso note that the
idp
value is case sensitive.The other option (which i have NOT tried). Instead of setting
idp
you set thetenant
in client application.And as @TheRock mentioned, In IndentityServer check the tenant in
SignInMessage
and overrideIdp
In this way as you keep adding new external providers, you don't have to change code in client application. You only to update IndentityServer code. This especially help if you have multiple client applications connecting to same identity server.
I know this is old but thought I'd still put this here to help someone out if they want to automatically redirect to an external login:
You can basically override the PreAuthenticateAsync on UserServiceBase and change the property IdP on the context.SignInMessage to be the external providers name that has been setup in your startup. And this will redirect.