I've seen the 600 calls / 600 seconds rate limit mentioned by some (e.g. on quora).
What I want to know is whether I am allowed to do 600 batch requests in 600 secs (a batch request consists of up to 50 requests).
|
|
You should handle the rate limiting programmatically by checking for the following error message. You should then put in a time-wait loop before your next call if you encounter the error. One of my high traffic applications accounts watches for this error and will slow down. From: https://developers.facebook.com/docs/bestpractices/
edit As reported by Igy in the comment thread, each request in that batch counts as 1. For your example of 600 being the max limit, that means you can fire off 15 batch requests containing 50 calls each. |
|||||||||||||||||
|
|
According to FB docs, each element in a batch counts as a separate call.
Quoted from: https://developers.facebook.com/docs/reference/api/batch/ In other words: you are not allowed to do 600 batch requests per 600 seconds. You are allowed 600 calls in 600 seconds. And each batch may count as one or more calls depending on the size of the batch. I don't have empirical evidence however. David |
|||
|
|
|
Batch calls definitely are counted per item in the batch. One batch call with 50 items is the equivalent of 50 api calls using the graph. |
|||
|
|
|
From my experience, they count individual requests regardless the way they were made (in batch or not). For example, if I'm trying to do 1 batch/sec containing 10 requests each, I soon get 'TOO MANY CALLS'. If I'm doing 1 batch/10 sec, each batch containg 10 requests, I never see TOO MANY CALLS. I personally do not see any reason to prefer batches over regular API calls. |
|||
|
|