我遇到以下问题:
我正在使用他们的 API 从 twitter 抓取推文。每当我达到请求的限制时,它都会向我返回 400(错误请求) - 回复。
现在,我怎样才能知道是否返回了 400 回复?未触发回调“错误”。
$.ajax({
url: 'http://api.twitter.com/1/statuses/user_timeline/' + Followed[Index] + '.json?count=' + Tweetlimit + '&include_rts=true',
dataType: 'jsonp',
success: function (json) {
$.each(json, function (index, tweet) {
var date = Date.parse(tweet.created_at);
Tweets.created_at = date.toString('hh.mm.ss - dd/MM/yy');
Tweets.created_as_date = date;
Tweets.push(tweet);
})
CompletedUsers = CompletedUsers + 1;
},
error: function () {
alert("Error");
},
});