评论框未出现在链接到 Facebook 页面的 XFBML 点赞按钮中

发布于 2024-12-06 09:05:09 字数 198 浏览 0 评论 0原文

在我的网站上,我有一个链接到 Facebook 页面的 XFBML Like 按钮。我使用网站的域作为应用程序域来设置应用程序,并包含带有应用程序 ID 的 Javascript SDK。

“赞”按钮本身可以工作,但评论部分不会出现。在 Chrome 中检查页面显示,iframe 出现在“like”按钮下方,但它仅包含带有一些代码的脚本标记。我在这里做错了什么?

On my website I have an XFBML Like button linked to a Facebook page. I set up the app with the website's domain as the App Domain and included the Javascript SDK with the app id.

The Like button itself works, but the comment section does not appear. Inspecting the page in Chrome shows that an iframe appears beneath the like button, but it contains only a script tag with some code. What am I doing wrong here?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

ぃ弥猫深巷。 2024-12-13 09:05:09

您正在使用以下代码加载 javascript sdk:

  (function(d){
     var js, id = 'facebook-jssdk'; if (d.getElementById(id)) {return;}
     js = d.createElement('script'); js.id = id; js.async = true;
     js.src = "//connect.facebook.net/en_US/all.js";
     d.getElementsByTagName('head')[0].appendChild(js);
   }(document));

它正在寻找 id 为 facebook-jssdk 的 div,但该 div 不存在。尝试将其添加到页面中的某个位置:

<div id="facebook-jssdk"></div>

You are loading the javascript sdk with this code:

  (function(d){
     var js, id = 'facebook-jssdk'; if (d.getElementById(id)) {return;}
     js = d.createElement('script'); js.id = id; js.async = true;
     js.src = "//connect.facebook.net/en_US/all.js";
     d.getElementsByTagName('head')[0].appendChild(js);
   }(document));

It is looking for a div with an id of facebook-jssdk, but this div doesn't exist. Try adding this somewhere in your page:

<div id="facebook-jssdk"></div>
短叹 2024-12-13 09:05:09

看看这个已知的 Facebook 错误:http://developers.facebook.com/bugs/293075054049400

基本上,如果 Facebook 用户帐户启用了安全浏览,就会出现这种行为。

Take a look at this known Facebook bug: http://developers.facebook.com/bugs/293075054049400

Basically, one gets this behavior if secure browsing is enabled on the Facebook user's account.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文