评论框未出现在链接到 Facebook 页面的 XFBML 点赞按钮中
在我的网站上,我有一个链接到 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您正在使用以下代码加载 javascript sdk:
它正在寻找 id 为
facebook-jssdk
的 div,但该 div 不存在。尝试将其添加到页面中的某个位置:You are loading the javascript sdk with this code:
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:看看这个已知的 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.