Reputation: 1
My application tries to get Facebook
page's photos information by sending API requests like this:
It sends 1 call in 1 second, but after 38-th call to API I get:
Error: (#613) Calls to stream have exceeded the rate of 600 calls per 600 seconds.
I don't use batch requests. Why FB thinks that my application exceeds the limit?
Thanks!
Upvotes: 0
Views: 2679
Reputation: 1358
Please see my answer here: Do Facebook Graph API calls using field expansion count differently against the rate limits than batch calls
you are using field expansion, and it appears that facebook counts this as additional calls under the rate limit.
Upvotes: 1