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 have setup omniauth-facebook gem as follows on my development machine:

config/initializers/omniauth.rb

Rails.application.config.middleware.use OmniAuth::Builder do
  provider :facebook, 'APP_KEY', '  APP_SECRET'
end

I have registered my app with facebook developers and provided a site url as "http://localhost:3000" as well as entering my APP_KEY and APP_SECRET into omniauth.rb

When i try to sign in, i get redirected to my root url saying routing error No route matches [GET] "/auth/failure" and in the url it says invalid credentials. I have been able to get omniauth Twitter, Github and Google to work, however Facebook is not logging me in. I am following the instructions given here. any thoughts?

share|improve this question
i solved it, all i had to do was wait a while for facebook to update its servers. – Hishalv May 31 '12 at 12:31

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.