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.

I'm trying to set up Facebook Authentication for my website, thing is I have location based urls ie.

localhost:3000/en/user/me

so my authentication url is redirecting to /en/auth/facebook which gives me a routing error. I've tried adjusting the app settings on developers.facebook so the site url is localhost:3000/en/ just to see if it works, it didn't. (that was just to test, obviously wouldn't work with other locations). Has anyone else ran into this problem and have a fix? here's my apps details:

Gemfile

gem 'omniauth-facebook'

config/initializers/omniauth.rb

OmniAuth.config.logger = Rails.logger

Rails.application.config.middleware.use OmniAuth::Builder do
 provider :facebook, ENV['my app id'], ENV['my secret id']
end

Using: Railscast #360
Rails: 3.2.6

Thanks!

share|improve this question
please try to comment :omniauthable option in User model, also add gem omniauth in gemfile if you didn't added. – chaitanya saraf Feb 24 at 18:37

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.