Reputation: 41
I have this fql query but its making me wrong result
SELECT created_time,message,description FROM stream WHERE source_id = me() AND comments.count>0 and created_time > 1343904949 limit 100000
Upvotes: 1
Views: 44
Reputation: 351
It is not possible to go so far back in time(90 days). From my experience i received an maximum of 6 days in the past.
This fql query will return the news feed posts with the accompanying comments:
SELECT created_time, message, description, comments FROM stream
WHERE filter_key IN (SELECT filter_key FROM stream_filter WHERE uid=me() AND type='newsfeed')AND is_hidden = 0 AND comments.count > 0 LIMIT 5000
Upvotes: 1