I am attempting to add the Facebook comments widget to a page that is being served over SSL/HTTPS. The widget works fine, but when I attempt to load the page in IE7 or IE8, I get a "mixed content" Security Warning.
I've gone through and verified that we are not referencing any insecure resources in the page. Removing the facebook comments widget makes the warning disappear. Using fiddler, I tried to pinpoint the resource that is being referenced, but as far as I could see, nothing is being pulled over http. I've confirmed the issue with a minimal repro case that just has the comments widget on the page.
<!DOCTYPE html>
<html lang="en-us" xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com/2008/fbml">
<head>
<title>
Test FB Comments
</title>
</head>
<body>
<div class="fb-comments" data-href="https://www.MY_WEBSITE.com/fb_minimal.html" data-num-posts="10" data-width="470" data-colorscheme="light"></div>
<div id="fb-root"></div>
<script type="text/javascript">
window.fbAsyncInit = function () {
FB.init({ appId: 'MY_FACEBOOK_APP_ID', status: true, cookie: true,
xfbml: true
});
};
(function () {
var e = document.createElement('script'); e.async = true;
e.src = document.location.protocol + '//connect.facebook.net/en_US/all.js';
document.getElementById('fb-root').appendChild(e);
} ());
</script>
</body>
</html>
This loads without warning in other browsers (Chrome, Firefox, IE9 and above).
I've reviewed my facebook application settings and everything appears to be configured correctly, although I am new to facebook integration, so perhaps I've missed something.
I've looked at this thread, Facebook JavaScript SDK over HTTPS loading non-secure items, but none of the suggestions there had any effect. I suspect this issue is different, since I'm not seeing warnings in other browsers as well.
Any insight would be greatly appreciated.