tags:

views:

69

answers:

1

I want to get the public timeline of a specific user but from a specific date. Currently, I can get the newest public timeline only and can not get the older ones. Here is my FQL:

SELECT post_id, message, source_id, created_time, attachment from stream WHERE source_id IN (select uid2 from friend where uid1 == SOME_USER_ID_HERE)
AND created_time >= 1260083210 (it is supposed to get from a month before)

A: 

I am having the same problem. the api won't return anything older than 4 months.

Desmond Liang