JQuery 中的 ERR_ABORTED 429请求过多

问题描述

当我运行代码并从服务器请求时,出现以下错误:-

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>

希望有人能够解决它!

解决方法

这不是错误。这是预期的响应代码。

我们 API 的免费使用限制为每月 50,000 个 API 请求。如果您超过该限制,我们将向您返回 429 HTTP 状态代码。

https://ipinfo.io/developers#jsonp-cors-requests