I'm making a simple query to facebook Graph like this:
https://graph.facebook.com/{UserId}/feed?limit=1000&since=0&access_token={AccessToken}
Where {UserId} and {AccessToken} are, of course, valid values. The AccessToken is retrieved from a facebook login with the following scope:
user_status,friends_status,user_activities,friends_activities
When the response has paging I call it's next value until there is no more paging.
So, when I began testing I received a at least three pages of data with the all user's posts, but out of the blue I'm receiving a single page (sometimes two) with all stories like:
A and B are now friends
or
A updated his cover photo.
I have also tried with
https://graph.facebook.com/{UserId}/posts?limit=1000&since=0&access_token={AccessToken}
with the same result.
Also, if I change {UserId} by me it works as expected.
At first I thought that I may have reached a poll limit, but I don't get any error, just a subset of the results.
read_streamand is working... the strange thing is that it didn't need it before. If it works for a couple of days I'll answer the question, otherwise I'll update the question. – Chango Jul 6 '12 at 19:27