如何使用Facebook上的帖子ID获取帖子的统计数据

Muh*_*man 3 facebook facebook-fql facebook-graph-api

我想获得Facebook帖子的统计数据(喜欢,评论,分享).我该怎么做?

dea*_*unk 7

网址:https://graph.facebook.com/<userid>_<postid>- 有很多关于墙贴的信息.

http://developers.facebook.com/tools/explorer - 您可以使用此工具进行测试.

样本数据:

{
  "id": "<userid>_<postid>", 
  "from": {
    "name": "User Name", 
    "id": "<userid>"
  }, 
  "message": "playing with graph api", 
  "actions": [
    {
      "name": "Comment", 
      "link": "http://www.facebook.com/<userid>/posts/<postid>"
    }, 
    {
      "name": "Like", 
      "link": "http://www.facebook.com/<userid>/posts/<postid>"
    }
  ], 
  "privacy": {
    "description": "Public", 
    "value": "EVERYONE"
  }, 
  "type": "status", 
  "created_time": "2012-03-14T11:33:14+0000", 
  "updated_time": "2012-03-14T11:33:14+0000", 
  "comments": {
    "count": 0
  }, 
  "is_published": true
}
Run Code Online (Sandbox Code Playgroud)