我正在使用NodeJS和一个名为oauth的npm包与Twitter的搜索API进行通信。然而,出于某种原因,Twitter正在向我返回一个空的数组状态,没有任何错误...更令人困惑的是,使用像Postman这样的工具具有完全相同的请求和键返回推文列表?这没有道理!这是我的要求:
这是我的代码:
var twitter_auth = new OAuth(
"https://api.twitter.com/oauth/request_token",
"https://api.twitter.com/oauth/access_token",
config.consumer_key,
config.consumer_secret,
"1.0A",
null,
"HMAC-SHA1"
);
var request = twitter_auth.get(
"https://api.twitter.com/1.1/search/tweets.json" + url,
config.access_token,
config.access_token_secret
);
var chunk = "", message = "", that = this;
request.on("response", function(response){
response.setEncoding("utf8");
response.on("data", function(data){
chunk += data;
try {
message = JSON.parse(chunk);
} catch(e) {
return;
}
console.log(message);
if(message.statuses)
{
for(var i = 0; i < message.statuses.length; i++)
{
var tweet = message.statuses[i];
that.termData[term.name].push(tweet);
}
if(message.search_metadata.next_results)
{
that.openRequests.push(that.createNewSearch(message.search_metadata.next_results, term));
}
else
{
that.termCompleted(term);
}
}
else if(message)
{
console.log("Response does not appear to be valid.");
}
});
response.on("end", function(){
console.log("Search API End");
});
response.on("error", function(err){
console.log("Search API Error", err);
});
});
request.end();
console.log(message)
正在返回此信息:
{
statuses: [],
search_metadata: {
completed_in: 0.007,
max_id: 577103544903462900,
max_id_str: '577103544903462913',
query: 'hello',
refresh_url: '?since_id=577103544903462913&q=hello&include_entities=1',
count: 100,
since_id: 577103514154893300,
since_id_str: '577103514154893312'
}
}
任何想法是怎么回事?为什么状态数组在我的代码中是空的,但在Postman中充满了推文?
答案 0 :(得分:3)
twittercommunity.com 中描述了此问题。
用户 rchoi (推特员工)的回答:
&#34;关于网络与API搜索,我们意识到这两者目前会返回不同的结果。我们升级了网络搜索。这些没有时间表 更改将被带到我们系统的其他部分。&#34;
尝试使用 https://dev.twitter.com/rest/reference/get/statuses/mentions_timeline https://dev.twitter.com/rest/reference/get/statuses/user_timeline 如果你使用api搜索功能获得空结果。