I'm struggling finding a usable gem which provides the following for a Rails 2.3.5 application:

  • we want to protect out API with oAuth 2; therefore a Controller for creating access/request Tokens and the models (Client, Token,...) are required
  • we want to consume oAuth2 Services like Facebook and Twitter

It would also be nice to have support for 3 legged and 2 legged authentication.

I found those gems, but they all have major drawbacks:

  • oauth-ruby (github.com/oauth/oauth-ruby)
    • i'm not quite sure if it already implements oauth2 mechanisms
    • more like a basic lib for services on top

  • oauth-plugin (github.com/pelle/oauth-plugin)
    • looks convenient BUT oauth2 only supported in rails3 branch :(

  • oauth2 (github.com/intridea/oauth2)
    • only for oAuth2 Consumers / no Provider Functionality

  • oauth2-ruby (github.com/aflatter/oauth2-ruby/tree/)
    • last Commit: 16.07.10 "DESCTRUCTIVE COMMIT" :(
    • based on oAuth2 Draft 00 (old!)

  • oauth2-provider (github.com/ThoughtWorksStudios/oauth2_provider)
    • last Commit: 21.10.10 - good
    • only Provider functionality :(
    • based on oAuth2 Draft 09 (quite recent)

Did anybody achieve those requirenments with one or a combination of those gems? Could you please provide me a direction?

Any help is much appreciated!

link|improve this question
I received a response from pelle, the author of the oauth-plugin, today. I asked him if oauth2 Support would be available in the master branch, too (not just the rails3 branch). He said "It should work well within Rails 2.3.x but I would like to hear feedback about it. I should really rename the branch." ! I'll try it out ! github.com/pelle/oauth-plugin/issues#issue/19 – Makibo Oct 27 '10 at 8:08
We implemented a custom fork of the rails3 Branch from the oauth-plugin and it worked like a charm – Makibo Dec 20 '10 at 10:18
i still have an issue on before_filter :login_or_oauth_required and oauthenticate callbacks, how did you manage it? – gozali Dec 22 '10 at 4:51
@gozali which exact problems do you have? we are only using oauthenticate btw (no more login_or_oauth_required); when the option "interactive" is set to true, it will act like login_or_oauth_required – Makibo Jan 12 '11 at 16:33
@makibo : i already solved it by upgrading my gems to the new one, but still confusing how to use the gem properly due to lack of documentations and example – gozali Jan 14 '11 at 8:20
show 2 more comments
feedback

3 Answers

I can't help with your search. But I'll just say that that's a pretty large number of implementations for a protocol that is still in very active development :)

See my pointers to the current OAuth 2.0 status, as of draft 11, at http://security.stackexchange.com/questions/1187/what-were-the-specific-security-flaws-with-oauth-1-0-how-are-they-being-addresse/1201#1201

(Can anyone characterize the degree of interoperability between the different drafts of 2.0?)

link|improve this answer
feedback

I've evaluated most of the gems listed in this thread, and in my (biased) opinion the devise_oauth2_providable gem is the best oauth2 provider backend for a rails app. it's goal is to be the easiest integration for existing rails apps and I'd recommend giving it a look over.

https://github.com/socialcast/devise_oauth2_providable

You can mix and match a different gem for oauth2 consumers since they are different enough responsibilities.

link|improve this answer
feedback

Wanted to add a couple more libraries that I've come across. I haven't used either, but I thought they should be on this post for people to compare:

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.