我正在为我的博客使用 facebook 评论插件,直到现在,facebook graph api 帮助我检索了我网站上每个帖子的评论数。所以,正如我所说,我一个月前写的帖子,我可以使用 php 和 json_decode 检索评论计数,如下所示:
$wsurl = 'http://www.example.com/title-of-the-post/';
$wsjson = json_decode(file_get_contents('https://graph.facebook.com/?ids='.$wsurl));
$cmcount = ($wsjson->$wsurl->comments) ? $wsjson->$wsurl->comments : 0;
通常,它会导致“评论”行出现。我不知道为什么,但现在,我创建的每个新帖子都没有“评论”和“分享”行。所以,这就是我从https://graph.facebook.com/?ids=http://www.example.com/title-of-the-post/得到的
旧帖:
{
"http://www.example.com/title-of-the-post/": {
"id": "http://www.example.com/title-of-the-post/",
"shares": 6,
"comments": 6
}
}
最新帖子:
{
"http://www.example.com/title-of-the-post/": {
"url": "http://www.example.com/title-of-the-post/",
"type": "website",
"title": "Title of the post",
"image": [
{
"url": "http://www.example.com/thumb.png"
}
],
"description": "This is a great post about great things.",
"updated_time": "2012-12-25T17:57:03+0000",
"id": "66666666666666"
}
}
“评论”行不再显示,我现在有更多信息(一些我不关心的信息)。所以发生了什么事?我根本没有改变我的代码!顺便说一句,我的评论框仍在工作并显示所有评论(我的点赞按钮正确显示“分享”计数)。有人可以帮助我吗?