gpt4 book ai didi

node.js - 我怎样才能获得超过最近 15 条推文的信息?

转载 作者:太空宇宙 更新时间:2023-11-04 00:11:19 25 4
gpt4 key购买 nike

我正在使用 Twitter npm 包作为 Node ,当我查询时,我最多只得到 15 条推文。我怎样才能获得更多结果?这是我的代码:

app.get('/', function (req, res) {
res.writeHead(200, {"Content-Type": "text/html; charset=utf-8"});
client.get('search/tweets', {q: hashTags}, function(error, tweets, response) {
if (!error) {
var size = Object.keys(tweets.statuses).length;
//var size = tweets.search_metadata.count;
console.log(tweets.search_metadata.count);
for(var i = 0; i<size; i++){
res.write(
"<div style='font-family: Arial; border: dashed 1px #ebd2ee; padding: 12px; margin:4px;'>" +
"<p style='font-size:20px; text-transform: UPPERCASE;'>" + tweets.statuses[i].user.name + "</p>" +
"<p style='font-size:14px;'>" + tweets.statuses[i].text + "</p>" +
"<br /><span style='font-size:14px; color:#A9A9A9;'>" + tweets.statuses[i].created_at + "</span></div>");
}
}
});
});

最佳答案

您只需添加计数参数即可。来自documentation :

count (optional)

The number of tweets to return per page, up to a maximum of 100. Defaults to 15. This was formerly the “rpp” parameter in the old Search API.

关于node.js - 我怎样才能获得超过最近 15 条推文的信息?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49407706/

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