I am using Graph API to retrieve posts from a Facebook Page using this type of URL https://graph.facebook.com/[PageId]/posts?access_token=[access token]
This returns a number of posts such as:
{
"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
}
},
...
],
...
}
For every post that is returned the created_time and updated_time are identical to each other even if the post has several comments and likes attached to it! Is this a bug? Shouldn’t the updated_time of a post show the time of last comment/like/etc attached to the post?
Thank you.