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 am using the sharer button inside a facebook app. It works in all browsers except Chrome. docs.google.com/open?id=0B4wxEQ6Do659WmcwdkN5VlFDZ2s

I check tools->javascript console and I see that I have a warning:

[blocked] The page at https://mywebsite.com ran insecure content from http://static.ak.fbcdn.net/connect.php/js/FB.Share.

The code used in this button is:

<a name="fb_share" type="button" share_url="http://mywebsite.com" href="http://www.facebook.com/sharer.php">Share</a><script src="http://static.ak.fbcdn.net/connect.php/js/FB.Share" type="text/javascript"></script>

Googled it, Stackoverflowed it but nothing helpful out there.

share|improve this question

1 Answer

up vote 0 down vote accepted

This is because, your site is using https protocol, but since that script is on http, chrome thinks this is a security issue.

Use https version of the file which is located at: https://facebook.com/connect.php/js/FB.Share

and you should be fine.

share|improve this answer
Yep, that works. Thanks keune – Giorgos Key Jan 1 at 16:25

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.