Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Thinktecture IdentityServer v3 and SAML

Does Thinktecture IdentityServer V3 has support for SAML or does it only support OAuth?

like image 446
Greens Avatar asked Mar 01 '15 21:03

Greens


2 Answers

IdentityServer v3 supports any Katana-compatible Owin middleware for authentication. With a compatible middleware for SAML2 such as Kentor.AuthServices IdentityServer 3 can authenticate against external SAML2 Identity Providers with Idsrv acting as a SAML2 Service Provider. I wrote a blog post on how to do it.

There's also a plugin interface which would allow IdentityServer v3 to act as a SAML2 Identity Provider but as far as I know there's no implementation available.

like image 134
Anders Abel Avatar answered Oct 06 '22 15:10

Anders Abel


There is Owin middleware to support the SAML protocol you can use with IdentityServer v3. It does not yet support all flows but it is being used in a couple implementations. Full disclosure - I am the author of this code which was forked from a previous SAML2 library on CodePlex.

like image 37
Emil Lerch Avatar answered Oct 06 '22 14:10

Emil Lerch