Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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 user if they would like to authorize Ryan's app. The second time the login button is clicked it automatically logs the user in. In my application, the user is forced to authorize my app each time. If the user is logged into twitter and has already authorized the app, then shouldn't it "just work"?

EDIT: my app currently has Read, write, and direct message permissions. I'm also using omniauth-twitter (0.0.6).

share|improve this question
I have the exact same problem right now. Are you testing your application locally or did you also test it on a remote server (don't know if it could be better, but it seems there are issues with twitter apps when using local callbacks and references) – LePad Nov 24 '11 at 19:21
I'm testing on a local server. – LDK Nov 24 '11 at 23:37

5 Answers

up vote 2 down vote accepted

Ok so just have released new version for that.Please use 0.0.7

https://rubygems.org/gems/omniauth-twitter/versions/0.0.7

Thanks to @fosrias

Cheers, Arun

share|improve this answer
Thanks a lot for this quick fix ! I updated my gems and indeed, it's now working as expected. Thanks again for being so responsive :) – LePad Nov 25 '11 at 17:47
Cool. Thanks for using this :-) – arunagw Nov 26 '11 at 5:21

I suspect a regression or something in the twitter oauth gem per:

https://github.com/intridea/omniauth/issues/478

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'}

share|improve this answer
Added patch pull request if you want to follow it: github.com/arunagw/omniauth-twitter/pull/7 – fosrias Nov 25 '11 at 3:41

If you have requested permission for DM privileges or other advanced privileges this can cause problems. ( https://dev.twitter.com/discussions/1459 )

If that doesn't help, more details would be useful.

share|improve this answer

I solved simply changing the login link destination to

"/auth/twitter?x_auth_access_type=read"
share|improve this answer

Adding a non-rails answer here.

Just be sure to check in the twitter settings for your app that the "Allow this application to be used to Sign in with Twitter" checkbox is selected. Otherwise Twitter will always redirect you to the authorize page instead of authenticate.

I spend 45 minutes troubleshooting the rails app before finally checking the twitter settings, hopefully this will save someone some time.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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