gpt4 book ai didi

json - Twitter 搜索 API 不返回任何推文?

转载 作者:搜寻专家 更新时间:2023-11-01 00:42:42 26 4
gpt4 key购买 nike

我正在使用 NodeJS 和一个名为 oauth 的 npm 包与 Twitter 的搜索 API 进行通信。然而,出于某种原因,twitter 向我返回了一个空的状态数组,没有任何错误……更令人困惑的是,使用像 Postman 这样具有完全相同的请求和键的工具会返回推文列表?这没有道理!这是我的要求:

网址:https://api.twitter.com/1.1/search/tweets.json?count=100&q=hello&since_id=577103514154893312&max_id=577103544903462913

这是我的代码:

    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 中却充满了推文?

最佳答案

此问题已在 twittercommunity.com 上进行了描述。

用户 rchoi(Twitter 员工)的相应回答:

“关于网络搜索与 API 搜索,我们知道目前两者返回不同的结果。我们对网络搜索进行了升级。这些没有时间表将对我们系统的其他部分进行更改。”

尝试使用 https://dev.twitter.com/rest/reference/get/statuses/mentions_timeline https://dev.twitter.com/rest/reference/get/statuses/user_timeline 如果您使用 api 搜索功能得到空结果。

请点击此链接 https://twittercommunity.com/t/search-tweets-api-returned-empty-statuses-result-for-some-queries/12257/6

关于json - Twitter 搜索 API 不返回任何推文?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29062363/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com