gpt4 book ai didi

node.js - Twitter api 回复推文

转载 作者:太空宇宙 更新时间:2023-11-03 21:51:29 26 4
gpt4 key购买 nike

我正在尝试使用 twit npm 模块编写一个脚本来回复推文。但是,每当我传递 in_reply_to_status_id_strin_reply_to_status_id 时,这似乎都会被忽略。不确定问题是什么?

   T.get('search/tweets', { q: `golf since:2011-07-11`, count: 1 }).then(function (response) {

const userName = response.data.statuses[0].user.screen_name;
const tweetId = response.data.statuses[0].id_str;

T.post('statuses/update', { in_reply_to_status_id_str: tweetId, status: `@${userName}, I like golf too` }, (err, data, response) => {
resolve()
})
})

})

最佳答案

您应该将参数作为 in_reply_to_status_id 而不是 in_reply_to_status_id_str 传递。

T.get('search/tweets', { q: `golf since:2011-07-11`, count: 1 }).then(function (response) {

const userName = response.data.statuses[0].user.screen_name;
const tweetId = response.data.statuses[0].id_str;

T.post('statuses/update', { in_reply_to_status_id: tweetId, status: `@${userName}, I like golf too` }, (err, data, response) => {
resolve()
})
})

})

关于node.js - Twitter api 回复推文,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54729379/

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