Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is Microsoft.Owin.Security.ActiveDirectory for making Owin auth middleware that uses AD?

I'm trying to understand the purpose of Microsoft.Owin.Security.ActiveDirectory and can't seem to find any documentation, tests, or even much in the way of articles.

What is this package actually for? I was trying to use it to create middlewear that authenticates against active directory and just can't seem to trace through what the parameters for UseActiveDirectoryFederationServicesBearerAuthentication actually do nor how to use them to point at my own AD server.

What's going on with this package?

like image 201
George Mauer Avatar asked Nov 01 '22 21:11

George Mauer


1 Answers

An answer from my codeplex issue

That package primarily works with Azure Active Directory (AAD) and Active Directory Federation Services (ADFS) via WsFederation. We don't have any support for LDAP, but some 3rd parties may. Here's one example: https://auth0.com/authenticate/aspnet-owin/active-directory

Contributions for new auth middleware are best directed here: https://github.com/owin-middleware

Still nothing on how to actually use it or when though.

like image 185
George Mauer Avatar answered Dec 08 '22 16:12

George Mauer