Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am looking at the OAuthServiceProvider WebForms example that comes with the DotNetOpenAuth project, but would like to implement this into an MVC 3 application instead.

Is there any examples where someone has done this already? I can imagine this is a common scenario that someone has already solved. Google/SO is failing to return any working examples.

Thanks for any assistance.

share|improve this question

2 Answers

up vote 12 down vote accepted

This project template is an ASP.NET MVC web site that includes an OAuth Service Provider authentication module in it. It also accepts OpenID logins, but you can rip that out if you don't want it. Granted, the project template looks like it throws in a lot of code. It is much more complete and production ready than a very simple sample that perhaps you can find elsewhere.

Although this project template targets MVC 2, I imagine you might be able to tie it over to MVC 3 fairly easily.

share|improve this answer
1  
Thanks for the template. This gives me a good start in the right direction! Thank for the wonderful OAuth tools you have written! – Brandon Apr 3 '11 at 21:02
Andrew, thanks for the tool. Do you know of a simple OAuth consumer stub that I can use to poke this web app? I still can't really see the OAuth in action. – flipdoubt May 5 '11 at 16:09
Yes, DotNetOpenAuth comes with an OAuthConsumerWpf sample app that lets you play the part of an OAuth consumer for an arbitrary OAuth service provider. – Andrew Arnott May 8 '11 at 4:48

Here's some examples in MVC:

http://www.west-wind.com/weblog/posts/899303.aspx

http://blog.bobcravens.com/2010/08/openid-and-oauth-using-dotnetopenauth-in-asp-net-mvc/

http://blog.techcle.com/2010/03/20/simple-oauth-integration-for-twitter-in-asp-net-mvc/

http://blog.wekeroad.com/2010/05/24/mvc-starter-2

share|improve this answer
Most of those examples are implementing the OAuth consumer portion into an MVC app. I want to setup the OAuth Service Provider piece. – Brandon Apr 2 '11 at 20:03
Oops. Sorry for misunderstanding the question @Brandon. :-( – klabranche Apr 3 '11 at 4:37
2  
Still good information, helped me for what I was looking for :) – Brettski Oct 7 '11 at 17:40

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.