Implementing the OpenID Connect Provider

Is there a sample implementation of OpenID Connect Provider in .NET?

DotNetOpenAuth does not seem to support this standard.

+4
source share
2 answers

Yes, IdentityServer is an openid connect provider. There are many examples of relying parties, vendor configurations, and an api resource server. See examples here: https://github.com/IdentityServer/IdentityServer3.Samples/

This seems to be the only "certified" open source .NET (C #) implementation currently. See http://openid.net/developers/libraries/

+2
source

I expect Microsoft to release an OP called WAAD - Windows Azure Active Directory Server soon: http://www.gluu.co/waad-interop

Are you sure you need an OpenID provider? If you need the Relying Party code, I recently saw this quick article: http://www.gluu.co/simple-connect-client

If you really need an OP, perhaps you should consider OX: http://ox.gluu.org

Who really cares what language the OP is written in? What you want is an easy way to administer things ... and OX provides an excellent web-based management interface (oxTrust).

0
source

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


All Articles