I am developing an API in Ruby on Rails 3 and I would like to secure it with Oauth2. In other words, I need to create an Oauth provider. Is there a working gem for Rails 3 out there or perhaps a tutorial on the issue?

UPDATE

I know Rails are REST based so I find it very strange that there are no tutorials on how to create a public API and secure it. Does anyone know of any good tutorials. Preferable with oAuth.

Thankful for all help!!

link|improve this question

56% accept rate
feedback

7 Answers

up vote 7 down vote accepted

I've opensourced an OAuth2 server implementation yesterday [1].

It's well documented and there is a dashboard to control accesses. Right now I'm searching for somebody who wants to build an engine starting from it, or something cool on top of rack. That's why it is open-source.

[1] https://github.com/Lelylan/rest-oauth2-server

link|improve this answer
1  
Looking great! Keep up the good work. – Jonathan Clark Feb 27 at 8:57
Thank, I hope the community will be part of the project to make it better and better. – Andrea Reginato Feb 27 at 18:48
Thank you very much for opening the source. I've learned a lot from it. – P.S.V.R Mar 28 at 4:01
feedback

https://github.com/intridea/oauth2 is the canonical gem right now for OAuth2 dev. If you are looking for a more complete solution, instead of rolling your own provider code, check out:

But I suggest messing around with the oauth2 gem if you aren't very familiar with the flow so that you can learn it better.

link|improve this answer
Thank you! Is there any documentation anywhere for this? github.com/freerange/oauth2-provider – Jonathan Clark Feb 4 '11 at 16:39
That version is based on mongoid btw :) So unless you are using that, I'd suggest the others. I've only messed with building a provider from scratch personally. – raidfive Feb 4 '11 at 16:54
I am using SQL. Do you know of a good guide for building providers in Rails 3? – Jonathan Clark Feb 4 '11 at 16:57
I haven't came across any guides for ActiveRecord yet. The OAuth2 spec is still being worked on. Maybe you could use OAuth 1.0? It has been around for much longer and the libraries are a little more mature. – raidfive Feb 4 '11 at 20:10
Yes, absolutely. Do you have any links to any libraries or gems for Oauth1? – Jonathan Clark Feb 4 '11 at 20:33
show 1 more comment
feedback

If you are using (or planning to use) devise for authentication, you can use https://github.com/socialcast/devise_oauth2_providable as plugin.

link|improve this answer
This is looking very good. I tried it but I cannot figure out how to create a client for example. – Jonathan Clark Jul 16 '11 at 14:38
Here is an example client (sinatra) and server (rails) using this devise plugin: github.com/aganov/devise-oauth2-provider-client – kiwnix Jul 18 '11 at 17:48
feedback

Check out this gem https://github.com/applicake/doorkeeper

It is for Rails 3, the development it's early stages though.

There's also an example app that you take a look and see how the API is done.

http://doorkeeper-provider.herokuapp.com/

link|improve this answer
feedback

I'm looking to implement an OAuth2 provider, too! I'm currently experimenting with this https://github.com/assaf/rack-oauth2-server, which seems to be a full-featured OAuth2 server, though it still supports only MongoDB, although implementing support for other DBMS seems simple enough. I am also looking at some of the other options posted here, lots of promising stuff!

link|improve this answer
I have used it to implement an oauth2 secured API, it works but it took me a couple of days to wrap my head around it. The author was extremely helpful though – Martin Wawrusch May 12 '11 at 12:37
feedback

I'm developing a rugygem for OAuth2 provider, Rack::OAuth2. https://github.com/nov/rack-oauth2

It requires to develop models (token, code, client etc) by yourself, but you can get a whole Rails3 sample OAuth2 server here. https://github.com/nov/rack-oauth2-sample

link|improve this answer
feedback

I am also looking for a nice solution, found this one: https://github.com/pelle/oauth-plugin

Looks promising, haven't tried it though.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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