How far back in time can query my stream using FQL (Facebook Query Language)? Is it possible to trace all the way back to my first post on Facebook?
A:
Try a range...
SELECT post_id, actor_id, target_id, message FROM stream WHERE created_time > 'somevalue'
As far as how far back, I don't see why you wouldn't be able to go back to when the user first created their profile (though there may be a restriction on the number of results...).
Alexander
2010-10-20 01:54:45
I trie that but it won't return any thing older than 4 months.
Desmond Liang
2010-10-20 02:07:47
A:
Last time I checked only 5,000 most recent records were available (for most queries). That is you can only see latest 5,000 wall posts, the rest doesn't exist for you no matter what FQL parameters you pass.
serg
2010-10-20 02:06:29
I don't think I have more than 5000. but it won't return anything older than 4 months. Any idea?
Desmond Liang
2010-10-20 02:10:20