0
- 今天是2015年10月17日
- 參數
until
與日期From 2015-10-08 to 2015-10-17
的工作就好了 - 參數
until
與日期小於2015-10-08
不會在所有的工作
我在做什麼錯?我如何獲得日期範圍內的推文(超過10天)?
這裏是我的代碼:
var params = {
count: 3,
until: "2015-10-08",
from: "[any_random_user]"
};
$.ajax({
url: twitterApi + "search/tweets.json",
type: "GET",
dataType: "jsonp",
data: params ,
success: function (response) {
console.log(response);
}
});
PS https://dev.twitter.com/rest/public/search
PPS,我使用1.1版本的API。