Reputation: 4901
i am using fql, and pass it in url for get all wall posts of a user on facebook. i have passed this url
but it gives only 25 records.
i want to get all records(wall posts) of this user. how can i get it?
Upvotes: 0
Views: 799
Reputation: 4393
You can't.
Each query of the stream table is limited to the previous 30 days or 50 posts, whichever is greater, however you can use time-specific fields such as created_time along with FQL operators (such as < or >) to retrieve a much greater range of posts.
https://developers.facebook.com/docs/reference/fql/stream/
Upvotes: 1