Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

OpenID Connect Provider implementation

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

DotNetOpenAuth doesn't seem to support this standard.

like image 750
dave Avatar asked Nov 02 '22 20:11

dave


1 Answers

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

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

like image 196
sdoxsee Avatar answered Nov 17 '22 22:11

sdoxsee