0

使用有效的访问令牌在 Facebook-API https://graph.facebook.com/me/feed中读取我自己的 Feed会得到如下所示的结果。如何找回我喜欢的链接?

当有一张喜欢的照片时,我得到了类似的回复。如何确定照片 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
  }
}
4

1 回答 1

1

me/feed是一个Post数组。这不是实际的喜欢,而是关于那种喜欢的帖子。

现在有办法找出你喜欢什么,除了like从 facebook 本身询问应用程序,这是不可能的。

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

于 2012-09-22T20:11:29.613 回答