I\'m creating an SSO server, to centralize all users in ActiveDirectory(AD) and manage them there instead of the database of each specific application.
To made this s
I think the GrantType.ResourceOwnerPassword
flow doens't support AD
login and not support by the UseOpenIdConnectAuthentication
neither , you can use Implicit
or Hybrid
flow.
Once you authenticate the to your client mvc app, you can view any claims in HttpContext.User
and find the correct claim value as user's identity (they are just claims , and no need to create a local account)