Rate limiting - I am getting error: too many request! #3
petrvecera
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Sometime server have rate limiting protection, you can't just fire 10000 request on a server. Usually server should return you HTTP error code 429. Usually you can read rate limiting in docs from the API you are using. Sometime the error 429 will have in header how much time you should wait.
But generally you can slow down your application if needed, you are using
axios
you can simply slow it down using this package.https://www.npmjs.com/package/axios-rate-limit
Beta Was this translation helpful? Give feedback.
All reactions