Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm currently investigating OAuth 2.0 Service Provider solutions for .NET (I appreciate that 2.0 isn't a complete spec).

What libraries are people currently aware of, other than DotNetOpenAuth ?

share|improve this question

6 Answers

Provider

StackID is an OpenID provider implemented for the Stack Exchange network, built on top of dotNetOpenAuth. code.google.com/p/stackid/

Client Library

Another option is to use the code for oAuth 2.0 from the Facebook SDK for C#.

Oh, another commonly forgotten one is the Google API C# Library with oAuth 2.0.

share|improve this answer

I'm building my own. DOAP. May not be perfect but none of the others I found worked for me.

share|improve this answer
thanks. I finally decided on dotnetopenauth CTP and finally got that working. – jamie Nov 11 '10 at 13:40

I wrote one that was current as of revision 15. Not all flows are implemented but it's a good start.

https://github.com/micahlmartin/OAuth2Provider

share|improve this answer

Try Oauth.net from Madgex : http://lab.madgex.com/oauth-net/ They provides examples of consumer and simple provider and enables Common Service Locator (you can plug in your favorite IoC framework).

share|improve this answer
2  
thanks, but as far as i can see they only support OAuth 1.0a currently. – jamie Oct 28 '10 at 6:49

I used an Oauth lib for javascript that I got from http://code.google.com/p/oauth/.

Worked well for me. They also have in C# (not sure if is the same you mention in your question) in the same link.

It is the only one I know unfortunately.

share|improve this answer
The question was about an OAuth server, the link you provided is to an OAuth client. – Erik Schierboom Dec 21 '12 at 13:41

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.