Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using facebook and linkedin authentications with omniauth. I have replaced the keys for both facebook and linkedin (provided by facebook and linkedin). Facebook works like a champ, linkedin gives me an invalid_signature error even though I'm using the api credentials linkedin provided. Is there something I'm missing with the linkedin api? Has anyone run into similar problems and come up with a solution.

I have the following omniauth gems installed

  • gem 'omniauth'
  • gem 'oauth2'
  • gem 'omniauth-twitter'
  • gem 'omniauth-facebook'
  • gem 'omniauth-linkedin'

In /config/initializer/omniauth.rb I have

Rails.application.config.middleware.use OmniAuth::Builder do
    provider :facebook, 'XXX', 'XXX', :strategy_class => OmniAuth::Strategies::Facebook
    provider :linkedin, 'XXX', 'XXX'  
end 

I have also tried

Rails.application.config.middleware.use OmniAuth::Builder do
    provider :facebook, 'XXX', 'XXX', :strategy_class => OmniAuth::Strategies::Facebook
    provider :linkedin, 'XXX', 'XXX', :strategy_class => OmniAuth::Strategies::LinkedIn  
end 
share|improve this question

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.