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.

I want to get all the photos of the user who gave permission to the app. Currently, I tried single and batch request of Graph API but it always paginates the results. Is there a seamless way to get all the objects without following pages?

ps: I'm using PHP-SDK so answering in php is the money :)

share|improve this question
Have you tried setting the limit parameter? – CBroe Jun 5 '12 at 23:01
Yes, and no matter how big number you give, it limits to some number less then what you set so it's not reliable, you can't do limit=1000000. I can't see in the documentation but via Graph API Explorer, you can verify. Related post is here: stackoverflow.com/questions/10108811/… – user862530 Jun 6 '12 at 19:57

1 Answer

I found out that giving limit=0 is solving the problem. It still generates paging object but they return empty data set. So, limit=0 returns the whole dataset in one shot.

share|improve this answer

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.