I am trying to get all the chat conversations of an user. I get the access token and directly query the facebook tables(no graph api,just plain FQL).FQL Guide
This is the query I am using
select body,thread_id from message where thread_id in (select thread_id in thread where folder_id=0 or folderid=1)
I am not getting the entire result though. I have tried Offset and Limit but not sure till what condition I should iterate this(How do I find the end??).
Also how to use since and until in FQL??
something like
select thread_id from thread where folder_id=0 since =UNIXTIMESTAMP (this doesnt work!!!). How do I get this going?