Twitter API回复推文

时间:2019-02-17 01:42:00

标签: node.js twitter

我正在尝试使用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()
            })
          })

        })

0 个答案:

没有答案