我正在运行一个与此非常相似的错误:Facebook Login API HTTPS Issue。
我有一个网站使用 facebook 身份验证,Facebook 登录没有问题。但是 Facebook 点赞按钮在被点击时会出现问题(在 Chrome、Safari、Firefox、OSX 上测试失败),错误消息是:
Blocked a frame with origin "https://www.facebook.com" from accessing a
frame with origin "http://static.ak.facebook.com". The frame requesting
access has a protocol of "https", the frame being accessed has a protocol
of "http". Protocols must match.
我已经搜索了所有内容,但没有找到解决方案。
似乎当单击like-button时,它会从https://facebook.com回调中弹出一个框架并尝试请求http://static.ak.facebook.com从而导致协议不匹配?!
这是我在<body>
标签之后的内容
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
// init the FB JS SDK
FB.init({
appId : 'appid', // App ID from the app dashboard
channelUrl : '//mydomain/channel.html', // Channel file for x-domain comms
status : true, // Check Facebook Login status
xfbml : true // Look for social plugins on the page
});
// Additional initialization code such as adding Event Listeners goes here
};
// Load the SDK asynchronously
(function(d, s, id){
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) {return;}
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/zh_TW/all.js";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
</script>
和频道文件http://mydomain/channel
<script src="//connect.facebook.net/zh_TW/all.js"></script>
这就是我如何使用赞按钮
<div class="fb-like" data-href=url data-send="true" data-width="450"
data-show-faces="true"></div>
真的需要帮助,拜托!