无法获取 Facebook 评论数
我在我的网站上使用 Facebook 评论,效果很好,但我无法检索评论数。
我尝试了 HTML5 代码:
我在这里检查了我的页面: https://graph.facebook.com/comments/?ids=http://www.bmeme.hu/?site=post&id=20 但正如你所看到的,它什么也没返回。
为什么无法获取 Facebook 评论数?
谢谢
更新:这是我的代码,我使用的:
$siteurl = http://www.bmeme.hu
$value["id"] //the actual post id
并且在 标记的第一行中:
<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/en_US/all.js#xfbml=1";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
并且不起作用..
I use Facebook comments on my website, and it works fine, but i can not retrieve the count of comments.
I tried the HTML5 code: <div class="fb-comments-count" data-href="http://www.bmeme.hu/?site=post&id=20">0</div>
but it returns with 0 instead of the real number.
I checked my page here: https://graph.facebook.com/comments/?ids=http://www.bmeme.hu/?site=post&id=20 but as you can see it returns nothing.
Why cannot get facebook comments count?
Thanks
Update: Here is my code, what I use:
<div class="fb-comments-count" data-href="<? echo urlencode($siteurl."/?site=post&id=".$value["id"]); ?>" style="display: inline;">0</div> komment
$siteurl = http://www.bmeme.hu
$value["id"] //the actual post id
And in the first line in <body>
tag:
<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/en_US/all.js#xfbml=1";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
And not works..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
发布评论
评论(2)
这就是我用来让评论计数发挥作用的方法。 (这是有效的 HTML 5 代码,请使用 facebook 网站上的示例来获取旧模板)。
//Include this in the footer of your page.
(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/en_GB/all.js#xfbml=1&appId=xxxxxxxxxxxxxx";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
现在使用此 div 检索评论计数(它将显示为 0
因为第一次使用它时,您的页面上可能不会有任何评论”。
<div class="fb-comments-count" data-href="http://www.yourpagelinkhere.com"></div>
您以错误的方式对 URL 进行编码。
属性 data-href
应为 http://www.bmeme.hu/?site=post&id=20
(注意 &
和不是&
)。就像您的评论社交插件中定义的那样。
要通过 OpenGraph 获取评论,您应该使用 encodeURIComponent
正确编码整个 URL:
https://graph.facebook.com/comments/?ids=http%3A%2F%2Fwww.bmeme.hu%2F%3Fsite%3Dpost%26id%3D20
comments-count
的 iframe
版本可以通过 URL 访问:
http://www.facebook.com/plugins/comments.php?href=http%3A%2F%2Fwww.bmeme.hu%2F%3Fsite%3Dpost%26id%3D20&permalink=1
更新:
由于您还关心“有效”HTML,因此您应该使用页面的 URL 编码 URL 来完成此操作。我已经创建了 jsFiddle 片段,您可以看到两种工作方式: http://jsfiddle.net/rFmyX/
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
0< ;/div>
但它返回 0 而不是实数。