stream没有返回更新的帖子,即使post有updated_time时间戳

时间:2012-03-03 08:23:44

标签: facebook-graph-api facebook-fql

这里发生了奇怪的事情:

fql?q=SELECT post_id, updated_time, created_time, message 
FROM stream WHERE source_id = 8576093908 AND updated_time > 1330761040 
-> no data

但:

fql?q=SELECT post_id, updated_time, created_time, message 
from stream where post_id = '8576093908_10150645788623909'
-> {
  "data": [
    {
      "post_id": "8576093908_10150645788623909",
      "updated_time": 1330761042,
      "created_time": 1330624006,
      "message": "...."
    }
  ]
}

所以,实际帖子说:是的,我更新了1330761042 但是当你想看到使用流的帖子时,它不会工作 - >没有数据

有人有想法吗?

0 个答案:

没有答案