Facebook-API:获取喜欢的链接或照片“已经喜欢链接/照片”-Response

时间:2012-09-22 12:53:28

标签: facebook facebook-graph-api

使用有效的Access-Token在Facebook-API https://graph.facebook.com/me/feed中阅读我自己的Feed,我会得到如下所示的结果。我怎样才能找到我喜欢的链接?

当有照片时我得到类似的响应。如何确定Photo-URL?

{
  "id": "xxxxxxx_yyyyyy", 
  "from": {
    "name": "XXX", 
    "id": "xxxxxx"
  }, 
  "story": "Peter likes a link.", 
  "story_tags": {
    "0": [
      {
    "id": "xxxxxxx", 
    "name": "Peter", 
    "offset": 0, 
    "length": 11, 
    "type": "user"
      }
    ]
  }, 
  "type": "status", 
  "application": {
    "name": "Likes", 
    "id": "2409997254"
  }, 
  "created_time": "2012-09-21T21:31:06+0000", 
  "updated_time": "2012-09-21T21:31:06+0000", 
  "comments": {
    "count": 0
  }
}

1 个答案:

答案 0 :(得分:1)

me/feedPost的数组。 这不是真正的喜欢,而是关于那样的帖子。

现在有办法找出你喜欢的内容,除了从facebook本身询问申请like这是不可能的。

如果你想知道你最近喜欢哪种类型的照片,你必须浏览所有照片,看看你是否喜欢并按日期订购。用FQL写这不是不可能,但facebook永远不会及时执行这样的查询。相信我,我试过;)