How to implement OAuth2 provider and consumer in C # .NET

I am searching on oauth2 and I think this might come in handy for some of the WCF support services that I create that will be used by some WPF applications and MVC web applications. The idea is that the user is first asked to log in with his username / password and get an access token that gives them access to the above resources.

Search here here SO I did not find much information about oauth2, with the exception of a few questions related to the consumer, on facebook, etc.

I am wondering if anyone can give some advice on implementing oauth2 (or know any good resources). I am interested in both the provider (authentication and the issuance of access tokens) and the client / client.

.NET OAuth2 Libraries

The only OAuth2 library I found is dotnetopenauth, which also seems to be heavily dependent on openid. At this point, I would prefer a library that is slightly lighter and just extends to oauth2

Are there any other oauth2 libraries yet?

+7
c # asp.net-mvc oauth wpf
source share
1 answer

There is OAuth.NET

+2
source share

All Articles