What is the best OAuth2 C # library?

It seems that many application providers are using OAuth2 to access APIs like Twitter and Facebook. Does anyone use a good OAuth2 library that is common enough for use in all applications?

+54
02 Sep '10 at 20:52
source share
4 answers

I did not examine its internals (the link to the source code is broken), but overall DotNetOpenAuth seems pretty professional.

Update: OAuth 2 and OpenID are now supported.

+18
02 Sep '10 at 21:50
source share

You should look at OAuth2 . This is an implementation of .NET OAuth 1.0 and the OAuth 2.0 protocol for most popular providers:

  • Google
  • facebook
  • twitter
  • quadrangle
  • Instagram
  • liaison in
  • windows live
  • in contact with
  • classmates
  • Yandex
  • mail.ru
  • Github

The nuget package is there .

+17
Sep 22 '12 at 6:27
source share

I have not seen any good frameworks for OAuth2 yet. I decided to try to create my own project for the project.

My framework supports media tokens and all oauth 2 streams (call / response, implicit, client credentials, resource owner password and update token).

It's a little clumsy, and I'm working on my first REST service based on this framework.

Check this out, any feedback or contributions will be appreciated.

https://github.com/ghorsey/SharpOAuth2

+6
May 28 '11 at 3:38 a.m.
source share

I would look at the Hammock REST client library. This is a general purpose REST client, but it also supports OAuth.

0
Sep 06 '10 at 16:10
source share



All Articles