0

我在我的网站上添加了一个 facebook 评论框,但它只有大约 40% 的时间加载。其他 60% 没有任何反应。我尝试进行一些故障排除并提出了这个问题,它不加载框的高度的时间设置为 0px,但是当它加载时它说 160px,正如它应该的那样。这是与评论框相关的所有代码。

<html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com/2008/fbml">

以下是body标签之后的内容。

<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
FB.init({
  appId      : '389788207743820', // App ID
  channelUrl : 'file:///C:\Users\ts10027\Documents\Mina webbplatser\recensionsida\channel.html', // Channel File
  status     : true, // check login status
  cookie     : true, // enable cookies to allow the server to access the session
  xfbml      : true  // parse XFBML
});
};
(function(d){
 var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
 if (d.getElementById(id)) {return;}
 js = d.createElement('script'); js.id = id; js.async = true;
 js.src = "http://connect.facebook.net/en_US/all.js";
 ref.parentNode.insertBefore(js, ref);
}(document));
</script>
<div id="fb-root"></div>
<script>(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/sv_SE/all.js#xfbml=1&appId=389788207743820";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>

这个放在我想要我的盒子的地方

<div class="fb-comments" data-href="http://www.stadskoll.nu/restaurang/harrys.php" data-num-posts="2" data-width="565px" data-height="160"></div>

提前致谢

4

1 回答 1

0

如果这是您实际使用的代码,则需要更改一些内容:

channelUrl : 'file:///C:\Users\ts10027\Documents\Mina webbplatser\recensionsida\channel.html', // Channel File

这必须在公共 URL 上,只需将文件移动到服务器上任何人都可以访问的位置。

接下来,您必须两次包含 JS SDK?您可能需要仔细检查:https ://developers.facebook.com/docs/reference/javascript/

于 2012-09-03T11:11:18.803 回答