tags:

views:

22

answers:

2

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
I trie that but it won't return any thing older than 4 months.
Desmond Liang
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
I don't think I have more than 5000. but it won't return anything older than 4 months. Any idea?
Desmond Liang

related questions