In Railscast: http://railscasts.com/episodes/241-simple-omniauth Ryan uses omniauth for logins. In the video when he clicks on the login button the first time Twitter asks the u
I suspect a regression or something in the twitter oauth gem:
EDIT: Solves the issue.
I believe that oauth
removed the individual strategies. In any case, using Devise
, the following fixed this (should work as modified for other Twitter oauth configs):
config.omniauth :twitter, 'consumer_key' , 'consumer_secret', :client_options => {:authorize_path => '/oauth/authenticate'}