Search code examples
node.jstwittertwitter-api-v2

Twitter API V2 reply to a tweet


I am trying hard to find a way to reply to a tweet with Twitter API V2, but it seems there is no endpoint for doing something like that, in Twitter Developer docs i found a way to post and delete a tweet, to retweet a tweet and delete a retweet, but i am struggling with replies, can you please help me with this? Thanks.


Solution

  • For those who are having trouble in the previous answer. Pass this following in the body of the request.

    {
        "text": "Hello World!2",
        "reply": {
            "in_reply_to_tweet_id":"175381330075023636"
        }
    }