我正在尝试使用这个:
https://twitter.com/account/rate_limit_status.xml
检查我没有超过 twitter 上的速率限制。问题是我正在拨打电话,但剩余点击参数似乎并没有像我打电话的那样减少:
<?xml version="1.0" encoding="UTF-8" ?>
<hash>
<reset-time-in-seconds type="integer">1281858712</reset-time-in-seconds>
<reset-time type="datetime">2010-08-15T07:51:52+00:00</reset-time>
<remaining-hits type="integer">146</remaining-hits>
<hourly-limit type="integer">150</hourly-limit>
</hash>
我只是在进行不需要身份验证的调用,并且我在文档中阅读了这一点:
Requires Authentication(关于认证):true,判断用户限速状态 false,判断请求IP的限速状态
(https://dev.twitter.com/docs/rate-limiting)
那么我需要在通话中的某处设置 false 吗?我不是经过身份验证的用户,所以我唯一的限制是对 ip 的当前限制。