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 followed the omniauth devise facebook app as explained by Ryan in episode 235.After the user authorizes we are getting the error at http://localhost:3000/auth/facebook/callback?code=13444...

The following are the facebook settings : App Domain : localhost siteurl: locahost:3000/ canvas url: http://localhost:3000/auth/facebook/

please tell me where am i going wrong?

share|improve this question
Please post exact details of the error message which you are getting, including the full backtrace if there is one. Also post the relevant parts of the code you are using. This way, someone may be able to help you. – Alex D Feb 1 '12 at 13:23
The following error message i am getting: SSL_connect returned=1 errno=0 state=SSLv3 read server certificate B: certificate verify failed – MAK Feb 1 '12 at 14:02

1 Answer

up vote 9 down vote accepted

In one project, we had to add this code to config/environments/development.rb to get Facebook connect working for local development:

OpenSSL::SSL::VERIFY_PEER = OpenSSL::SSL::VERIFY_NONE
share|improve this answer
Thank you mate!! you are amazing, you have saved us from getting squeezed up!! Cheers!! – MAK Feb 1 '12 at 18:35
Glad you like the answer. If it was useful for you, an upvote would be appreciated. – Alex D Feb 1 '12 at 19:14
solved my problem on Win 7. Thanks Alex D. I had spent near 6 hours to get this solution. – VSiingh May 11 at 14:19

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.