IdentityServer4 with Active Directory as an Identity Provider for SSO

Does anyone know if the following is possible?

  • IdentityServer4 with Active Directory as an Identity Provider —— How?
  • Additional claims and roles using IdentityServer4 that reference an AD user - How?
+5
source share
1 answer

Yes, you can use AD as an identity provider in IdentityServer. Take a look at mclark1129 IdentityServer4.Applies a repo for an example. You can see the claims generated in the AccountController.

Although this example uses Azure AD, it uses it as a generic OpenIdConnect provider. If you are using the version of AD and Active Directory Federation Services (ADFS) that support OpenIdConnect, you can configure this upstream OpenIDConnect authentication provider .

+2
source

Source: https://habr.com/ru/post/1258699/


All Articles