Rails has the rest autho plugin which works well but is there a solution for incorporating twitter, facebook, google, yahoo, etc…
Seems like each on has its own plugin and demands and mixing them is going to be a mess.
This is for logging in users like how Stackoverflow gets things done not for using the robust features of the APIs.
What I want to do is do what stackoverflow did for login but in rails.
It’s not too difficult to write your own controller code to connect to each of these services and redirect. For example, to authenticate to twitter using oauth takes two actions and about 20 lines of code total.
Keep the code for each service separate in it’s own controller.