小编fuc*_*777的帖子

Facebook图形api评论计数

似乎Facebook改变了帖子的结果,几周前就可以直接从帖子中读取评论数

https://graph.facebook.com/125909647492772_502974003098530

你有类似的东西

...
"comments": {
"data": [
  {
    "id": "502974003098530_78616446", 
    "from": {
      "name": "Mathias Fritz", 
      "id": "526559276"
    }, 
    "message": "saugeil!", 
    "can_remove": false, 
    "created_time": "2013-03-26T14:58:01+0000", 
    "like_count": 1, 
    "user_likes": false
  }
], 
"paging": {
  "cursors": {
    "after": "MQ==", 
    "before": "MQ=="
  }
}, 
"count": 1
Run Code Online (Sandbox Code Playgroud)

但现在计数丢失了.

我对图表文档进行了一些研究,但是这个方向的唯一变化似乎是注释现在可以有注释......而这些注释会在名为comment_count的字段中计算.

是否仍有办法获得总评论数?

facebook count facebook-graph-api facebook-comments

18
推荐指数
5
解决办法
3万
查看次数