When I run my application the API calls reaches their limit so fast. Any solution to extend the total number of calls?
Asked
Active
Viewed 61 times
-1

Laith Harzalli
- 9
- 2
-
without knowing exactly what you do, it is impossible to give you an answer, i am afraid – andyrandy Aug 09 '21 at 13:06
-
i'm trying to get metrics from facebook and instagram pages with node js and react js, i can fetch all the necessary metrics via node js but when i try to consume the API calls via react js the application reach the limit of calls so fast from first or second call. Can i demand from facebook to extend the number of the API calls – Laith Harzalli Aug 09 '21 at 13:41
-
again, i am afraid you have to be a lot more specifics. include the relevant code. extending the api call is most likely not an option, but maybe you are doing something wrong anyway. like, doing api call you could combine, for example. – andyrandy Aug 09 '21 at 13:55
1 Answers
0
Unfortunately the number of api calls are limited; you can find info here.
Althought you cannot extend the number of calls, you can still manage the way to do a call. Here you can find the Facebook best practice but I suggest you to:
- Split the call in order to ease the load
- Do asynchronous requests
- Try to filter the data you are not interested to

Sprizgola
- 416
- 2
- 10