服务器响应状态为429(Too Many Requests)intlTelInput.js

时间:2015-07-29 15:34:23

标签: javascript jquery geolocation

我正在使用intlTelInput.min.js进行使用此代码的地理IP查找

jQuery("#teephnumber").intlTelInput({
        allowExtensions: true,
        defaultCountry: "auto",
        setNumber: "Telephone number",
        geoIpLookup: function(callback) {
            $.get('http://ipinfo.io', function() {}, "jsonp").always(function(resp) {
              var countryCode = (resp && resp.country) ? resp.country : "";
              callback(countryCode);
            });
          },
        nationalMode: false,
        utilsScript: "/wp-content/themes/imc/js/utils.js"
    });

它工作正常,但现在  不在控制台我看到这个错误:

The server responded with a status of 429 (Too Many Requests), GET http://ipinfo.io/?callback=jQuery1112025137682701461017_1438183879450&_=1438183879451

由于这项工作没有javascript代码。这可能是什么原因?

1 个答案:

答案 0 :(得分:3)

请参阅此处的费率限制:https://ipinfo.io/developers

“您每天只能处理1,000个API请求。如果您需要提出更多请求,或需要SSL支持,请参阅我们的付费计划。”

我认为您需要支付更多请求或找到减少您正在提出的请求的方法。您可以缓存该位置,以便每个用户只使用localstorage查询一次。