axios load error. 429
See original GitHub issueI am loading axios like below
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
and below error is caused.
I didn’t have this issue until just few hours ago. Is there a bug in the update?
Issue Analytics
- State:
- Created 4 years ago
- Comments:8
Top Results From Across the Web
Axios Request failed with status code 429 but it is working with ...
You are probably running the above line inside some loop which is causing this to happen as Axios is firing off all requests...
Read more >How to fix 500 and 429 errors with axios ? - Laracasts
500 could be anything of server side. Open browser dev tools , see network tab error message. BTW , don't put everything in...
Read more >Is there any way to know the requested API completed his job ...
The HTTP 429 Too Many Requests response status code indicates the user has sent too many requests in a given amount of time...
Read more >How to Fix 429 Too Many Requests Error - Kinsta
The HTTP 429 error is returned when a user has sent too many requests within a short period of time. The 429 status...
Read more >What an HTTP Error 429 Means & How to Fix It - HubSpot Blog
HTTP Error 429 is an HTTP response status code that indicates the client application has surpassed its rate limit, or number of requests...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
looks like it’s fixed and it’s an issue with unpkg, thank you everyone!
You are able to resolve this issue by installing axios module with npm (like npm install axios). however, for me(or if you can’t use npm or something), I just have inserted a raw js file into “head” to fix this issue immediately. https://github.com/axios/axios/blob/master/dist/axios.min.js It is not a best choice but hope this can be helpful!