Reputation:
Does anyone know whats the limit for batch requests when using FBs graph API? From their documentation:
Limit
We currently limit the number of batch requests to 20.
That's not clear. Is that 20 per 600 seconds? Per day? Total for one app ever?
Upvotes: 6
Views: 2308
Reputation: 392
If you have more than twenty (20) you can build an array and then break them into groups of 20 or less and loop them thru your PHP in one "session". We have one app that will run 600 - 700 OG requests but it is sloooooooow, up to 300 seconds, some times, depending on FB.
Upvotes: 0
Reputation: 52083
It means that 20 individual requests are allowed to be batched together into a single batched request, which saves you from sending 20 individual http requests over at the same time.
Upvotes: 8