Facebook OAuth error 4: API_EC_TOO_MANY_CALLS - application request limit reached

Sometimes I get OAuth error number 4 when my application sends requests for the get:album/photos or get:user/albums method

This error code means API_EC_TOO_MANY_CALLS - the application request limit has been reached, but what is the basis of this limit? there is a common api request limit (100 million API requests per day), but this limit is far in my case.

So does anyone know how many of them are for this request? Is it based on a series of requests over a period of time or a limit on maximum requests per second?

we tried different options, but it is very difficult, not having accurate information about what the real reason is ...

+4
source share
1 answer

Have you tried packet calls? I ran into this after another caching error, and configured my calls accordingly. I will not base it on a static value, but rather on a return error. Facebook is constantly changing its settings.

0
source

Source: https://habr.com/ru/post/1386091/


All Articles