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!