Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Downloading https://graph.facebook.com/GROUP_ID/feed?limit=500&access_token=TOKEN, gives me the all entries in that group (I collect more posts using paging->next).

But, after reviewing some posts, I see that there are at least 500 comments, but the feed returns only 50.

I don't see any pagination for dealing with the comments, so how can I "ask" for more?

share|improve this question

1 Answer

up vote 2 down vote accepted

You'll have to manually request all the fields, but you can request more comments using field expansion.

.../GROUP_ID/feed?fields=comments.limit(100)&limit=...
share|improve this answer
Executing it returns An unknown error occurred. Am I doing something wrong? (of course there is a valid GROUP_ID, all I add was the fields parameter). – Guy David Jan 17 at 21:53
It works for me on my groups in the Graph API explorer. developers.facebook.com/tools/explorer – cpilko Jan 17 at 22:49
I figured the problem: when I lowered the limit parameter to 100, and the limit of the comments to 20, I get data. Testing with higher values works in the Graph API explorer, so it's seems to be a problem on my side. Could it be that too much information is returned, and an overflow occurs? – Guy David Jan 19 at 20:03
It could be. You can test this by pasting your URL complete with a valid access token in the address bar of a browser. If you get data, complete with paging links then you know it's on your receiving end. – cpilko Jan 19 at 20:46
I have overcome the problem. Removing the limit parameter, and downloading my data page by page solved it. Thank you so much! ;) – Guy David Jan 19 at 21:06

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.