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'm trying to make a Facebook canvas app, eventually to be hosted on Heroku, but right now it's on localhost. I can sign in to my app on local host with Facebook, but when I try to visit the app (which is just an html page right now) on Facebook, I get this SSL error.

Unable to make a secure connection to the server. This may be a problem with the server, or it may be requiring a client authentication certificate that you don't have.
Error 107 (net::ERR_SSL_PROTOCOL_ERROR): SSL protocol error.

This is how I set up the app on Facebook. can anyone explain what I'm doing wrong? I understand that I should be able to see the app on Facebook when I visit the app page. This is how I set up the App on Facebook

Note, it's in Sandbox mode, if that makes a difference.

enter image description here

enter image description here

share|improve this question

1 Answer

up vote 1 down vote accepted

You don't have ssl in your localhost.

Desactive Secure browsing in your personal account to see your app Account Settings > Security > Secure browsing

share|improve this answer
1  
Or: Implement SSL on your test server. For example OpenSSL under Apache is not to hard to set up with a self-signed certificate … have your browser accept this certificate once, and you’re good to go testing using HTTPS as well. – CBroe Sep 14 '12 at 9:29

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.