Facebook Graph API返回具有多个评论/喜欢但相同created_time& updated_time

时间:2011-10-24 14:30:27

标签: facebook-graph-api

我使用Graph API使用此类型的网址从Facebook页面检索帖子 https://graph.facebook.com/[PageId]/posts?access_token=[access token]

这会返回一些帖子,例如:

{
   "data": [
    {
         ...
         "type": "link",
         "created_time": "2011-10-21T15:24:19+0000",
         "updated_time": "2011-10-21T15:24:19+0000",
         "likes": {
            "...
            "count": 7
         },
         "comments": {
            "count": 39
         }
      },

      {
         ...
         "type": "status",
         "created_time": "2011-10-18T15:31:22+0000",
         "updated_time": "2011-10-18T15:31:22+0000",
         "likes": {
            ...
            "count": 15
         },
         "comments": {
            "count": 67
         }
      },

      ...
   ],
   ...   
}

对于返回的每个帖子,created_time和updated_time彼此相同,即使帖子有多个评论和喜欢附加到它!这是一个错误吗?邮件的updated_time不应该显示帖子的最后评论/喜欢/ etc的时间吗?

谢谢。

2 个答案:

答案 0 :(得分:2)

好的,经过一些搜索,我发现这是一个错误,但只有在帖子超过30条评论时才会出现!

请参见此处:updated time gets reset to created_time when a post gets more than 30 comments

答案 1 :(得分:0)

同样奇怪的是,如果你有一个过去创建的事件的页面提要,那么创建和更新的时间将在未来,就像事件日期一样....