I need to get all me() wall posts. I am using the following FQL:
SELECT post_id, comments, message
FROM stream
WHERE source_id = me()
AND created_time > 946684800 AND created_time < now()
but this only returns 7 entries, where as a matter of fact there must be much much more.. (NB 946684800 = Sat, 01 Jan 2000 00:00:00 GMT)
I also tried to use the following query:
SELECT post_id, actor_id, target_id, message, comments
FROM stream
WHERE source_id = me()
AND is_hidden = 0
ORDER BY created_time
DESC LIMIT 1000000
that although it returns 394 entries, the earliest data is Mon, 30 Apr 2012 12:56:04 GMT, where for it must go back more.
I need to have in possession the whole wall posts a user have submitted.
Any ideas before I get frustrated even more :) ?