鸣叫!因为jQuery大部分时间都可以正常工作,但偶尔我会得到这个: "NetworkError: 400 Bad Request - http://api.twitter.com/1/statuses/user_timeline.json?screen_name=jlowgrencount=5include_rts=1page=1callback=jQuery1620
"NetworkError: 400 Bad Request - http://api.twitter.com/1/statuses/user_timeline.json?screen_name=jlowgren&count=5&include_rts=1&page=1&callback=jQuery16202827138555332698_1313661810432&_=1313661810465
这是jQuery调用:
$(".tweet").tweet({ username: "jlowgren", count: 5, loading_text: "Loading tweets…", refresh_interval: 120 });
该网站是www.jorum.se.
任何有这个英俊解决方案的人都将获得丰厚的业力奖励!
看起来你的收益率有限.If your application is being rate-limited by the REST API it will
receive HTTP 400 response codes. It is best practice for applications
to monitor their current rate limit status and dynamically throttle
requests if necessary. The REST API offers two ways to observe this
status which are explained in the Rate Limiting FAQ.
> Authenticated(oAuth)请求的请求限制为350 /小时
而. .
>未经过身份验证的请求的请求限制为150 /小时
要查看当前的速率限制状态,请发送GET请求
http://api.twitter.com/1/account/rate_limit_status.json
有关更多上下文,请参见this page