gpt4 book ai didi

Facebook Graph Api 网址评论和分享数不再有效

转载 作者:行者123 更新时间:2023-12-03 22:21:04 26 4
gpt4 key购买 nike

我正在为我的博客使用 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"
}
}

“评论”行不再显示,我现在有更多信息(一些我不关心的信息)。所以发生了什么事?我根本没有更改我的代码!顺便说一句,我的评论框仍在工作并显示所有评论(我的赞按钮正确显示“分享”计数)。有人可以帮助我吗?

最佳答案

在我看来像是一个错误。 FQL 查询是一种仍然有效的替代方法。这是一个例子:

select comment_count, share_count, like_count from link_stat where url = "http://techcrunch.com/2011/04/12/facebook-comments-now-on-over-50k-sites-get-more-social-with-latest-upgrade/"

在此处试用 API Explorer:http://developers.facebook.com/tools/explorer/?fql=select%20comment_count%2C%20share_count%2C%20like_count%20from%20link_stat%20where%20url%20%3D%20%22http%3A%2F%2Ftechcrunch.com%2F2011%2F04%2F12%2Ffacebook-comments-now-on-over-50k-sites-get-more-social-with-latest-upgrade%2F%22

但是,如果他们更改图形 API 以再次返回分享计数和评论计数,我会很高兴。

这个官方 Facebook 文档 (developers.facebook.com/docs/reference/plugins/comments/) 仍然建议使用图形 API 进行评论计数,但是它似乎不适用于像这样的新页面:https://graph.facebook.com/?ids=http://techcrunch.com/2012/12/27/the-last-imac-question-mark/

关于Facebook Graph Api 网址评论和分享数不再有效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14061877/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com