ERR_ABORTED JQuery 中的 429(请求过多)
ERR_ABORTED 429 (Too Many Requests) in JQuery
当我 运行 代码并从服务器请求时,我收到以下错误:-
GET https://ipinfo.io/?callback=jQuery321009066225017254137_1609854136768&_=1609854136769 net::ERR_ABORTED 429
这是我的代码
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<script>
$.get("https://ipinfo.io", function(response) {
console.log(response.city, response.country);
}, "jsonp");
</script>
希望有人能解决!
这不是错误。这是预期的响应代码。
Free usage of our API is limited to 50,000 API requests per month. If you exceed that limit we'll return a 429 HTTP status code to you.
当我 运行 代码并从服务器请求时,我收到以下错误:-
GET https://ipinfo.io/?callback=jQuery321009066225017254137_1609854136768&_=1609854136769 net::ERR_ABORTED 429
这是我的代码
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<script>
$.get("https://ipinfo.io", function(response) {
console.log(response.city, response.country);
}, "jsonp");
</script>
希望有人能解决!
这不是错误。这是预期的响应代码。
Free usage of our API is limited to 50,000 API requests per month. If you exceed that limit we'll return a 429 HTTP status code to you.