I have been using OmniAuth 0.2.3 with Rails 3.0.7 for facebook authentication. I have obtained application ids for localhost and hosting environment separately. When testing in localhost, everything work like a charm. However, when I run my web application on the hosting server, I keep getting the error "invalid_credentials".
My configurations on the hosting server are shown below:
Ruby (ruby 1.8.7 (2009-06-08 patchlevel 173) [x86_64-linux])
Ruby on Rails (3.0.7)
OmniAuth (0.2.3)
bundler (1.0.2)
GemFile
gem 'rails', '>= 3.0.6'
gem 'mysql2'
gem 'kaminari'
gem 'omniauth'
config/initializers/omniauth.rb
Rails.application.config.middleware.use OmniAuth::Builder do
provider :facebook, 'app_id', 'app_secret', {:scope => "email, publish_stream", :client_options => {:ssl => {:ca_path => "/etc/pki/tls/certs", :ca_file => "/etc/pki/tls/cert.pem"}}}
end
error url
http://my_url/auth/failure?message=invalid_credentials
Any advice or suggestion would be helpful. Thank you.