↧
Answer by Ryan Brunner for Rails - Using twitter oAuth for logging in users
This RailsCasts episode demonstrates how to create a simple authentication system that only requires an OAuth verification, without the need for a seperate user account maintained by your app.
View ArticleAnswer by madlep for Rails - Using twitter oAuth for logging in users
Try using them OmniAuth gem. Makes doing that pretty straight forward. If you're not wanting another gem dependency, you could probably code up your own functionality based on what they do with their...
View ArticleRails - Using twitter oAuth for logging in users
I use Twitter oAuth to allow users to signup for my site.I have the user's access_token, access_secret from their signup stored.When the user wants to return to the site and login to their account, how...
View Article