I'm going to implement a simple REST API wrapper around a service and would like to use Ruby with Sinatra for this task.
The Idea is to have users authenticate / sign requests using two-legged OAuth (2.0).

Should I try to use an authentication framework like warden and an addtional oauth 2.0 addon (e.g. warden-oauth2) or should I use a rack based solution like rack-oauth2-server. The rack based approach seems to rely on MongoDB which is ok, but I'd rather minimize the dependencies.

Cheers,
Marc

link|improve this question

71% accept rate
feedback

1 Answer

I'd recommend OmniAuth with Sinatra (or Padrino, which you might find gives you some helpful extras). There is an oAuth strategy you could consider.

link|improve this answer
thanks, that's the latest one I'm looking at! I'm still not sure if this would include things like signed requests or if it would just allow authentication against 3rd party services (aka 3 legged oauth). Since this will just be an API, I'm not sure I could actually use most of what Padrino offers. I think I might also need the oauth2 strategy – Marc Seeger Jan 8 at 22:45
2  
Note that OmniAuth is more for signing into other OAuth providers like Google, Facebook, or Twitter as a relying party, rather than functioning as an OAuth 2.0 provider yourself. If you're building your own API, OmniAuth probably isn't what you're looking for. – Bob Aman Jan 9 at 13:43
feedback

Your Answer

 
or
required, but never shown

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