Google OAuth2 API

I am looking for an OAuth2 API that I can use in C # and I came across Google: http://code.google.com/p/google-api-dotnet-client/wiki/OAuth2

It talks about how to use it to integrate with OAuth for various Google services, but can this library also be used for OAuth services other than Google?

+4
source share
1 answer

You can probably use, for example, OAuth2Authenticator.ApplyAuthenticationToRequest() , but it will be difficult and not worth the effort. I would rather suggest a look at DotNetOpenAuth , which supports OAuth2 (and is used by StackOverflow).

+1
source

All Articles