我正在尝试获取用户的所有聊天对话。我得到访问令牌并直接查询 facebook 表(没有图形 api,只是普通的 FQL)。FQL 指南
这是我正在使用的查询
select body,thread_id from message where thread_id in(在thread_id = 0或folderid = 1的线程中选择thread_id)
我没有得到整个结果。我已经尝试过 Offset 和 Limit 但不确定我应该在什么条件下迭代它(我如何找到结尾??)。
还有如何在 FQL 中使用 since 和 until ?就像是
select thread_id from thread where folder_id=0 since =UNIXTIMESTAMP
(这不起作用!!!)。我该怎么办?