4

Graph API 不再报告喜欢(分享)的数量,或者至少是不稳定的:

这里缺少喜欢: http ://graph.facebook.com/?id=http://www.huffingtonpost.com/2012/12/25/pope-christmas-eve-mass-god_n_2361399.html

但出现在 IMDB 上: https ://graph.facebook.com/?id=http://www.imdb.com/title/tt1853728/

对于较旧的网页,还可以找到带有共享和评论数量的旧输出。

这是推出的问题还是这是一个错误?据我所知,输出在 20 日左右开始发生变化。

4

3 回答 3

2

试试这个

http://graph.facebook.com/fql?q=select%20comment_count%2C%20share_count%2C%20like_count%20from%20link_stat%20where%20url%20%3D%20%22http%3A%2F%2Fmashable.com% 2F2013%2F01%2F30%2Ffacebook-twitter-blackberry-10%2F%22

这将产生类似的结果

{
   "data": [
      {
         "comment_count": 3,
         "share_count": 91,
         "like_count": 5
      }
   ]
}
于 2013-02-08T06:44:41.947 回答
0

对我来说似乎是一个错误。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

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

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

于 2012-12-27T21:25:48.913 回答
0

几天前它已被接受为错误,

http://developers.facebook.com/bugs/180781098727185?browse=search_50dda74e1870c8d60275326

希望他们在不久的将来解决这个问题

于 2012-12-28T14:37:22.647 回答