gpt4 book ai didi

javascript - 使用 twit 和 Node.js 回复推文

转载 作者:太空宇宙 更新时间:2023-11-03 23:02:17 25 4
gpt4 key购买 nike

我正在使用 Twit Node.js API。我想做的是回复与某个关键字匹配的推文。我希望我的回复推文显示在下面的其他推文中。就像您通过应用程序或网站回复一样。

我的代码在这里:

var reply = function(tweet) {
var res = {
status: 'This is a tweet',
in_reply_to_status_id: tweet.id_str
};

twitter.post('statuses/update', res,
function(err, data, response) {
console.log(data);
}
);
}

状态已正确写入回复 JSON,但 in_reply_to_status_id 仍为空。该推文已发布到机器人帐户,但并未回复应回复的推文。

为什么不起作用?

是的,我尝试写入 in_reply_to_status_id_str 并尝试将 tweet.id_str 设为字符串。

有人知道我错过了什么吗?

谢谢!

我的响应 JSON 在这里:

{ created_at: 'Wed Jun 21 07:44:22 +0000 2017',
id: 877431986071142400,
id_str: '877431986071142400',
text: 'This is a tweet',
truncated: false,
entities: { hashtags: [], symbols: [], user_mentions: [], urls: [] },
source: '<a href="https://example.com" rel="nofollow">Spatinator</a>',
in_reply_to_status_id: null,
in_reply_to_status_id_str: null,
in_reply_to_user_id: null,
in_reply_to_user_id_str: null,
in_reply_to_screen_name: null,

如果您需要更多响应 JSON,请告诉我。

最佳答案

解决方案是在响应 json 的状态中包含对 tweet.user.screen_name 的提及。像这样它的工作原理:

var reply = function(tweet) {
var res = {
status: 'This is a tweet @' + tweet.user.screen_name,
in_reply_to_status_id: '' + tweet.id_str
};

twitter.post('statuses/update', res,
function(err, data, response) {
console.log(data);
}
);
}

关于javascript - 使用 twit 和 Node.js 回复推文,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44669859/

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