这里发生了奇怪的事情:
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 但是当你想看到使用流的帖子时,它不会工作 - >没有数据
有人有想法吗?