I am using a postman to test Twitter API v2, goal is to post a retweet and to delete a retweet. Somehow I am able to post a retweet but problem is that the retweet is empty. This is the Twitter API endpoint 'https://api.twitter.com/2/users/:id/retweets', ': id' is being replaced with my Twitter id. Authorization using OAuth 1.0, which works. And I am sending the 'twitter_id' id body as JSON data. Now what I get as a response is
{
"data": {
"retweeted": true
}
}
so my question is how do I send a retweet text in this request because all Twitter is giving me for this post request is this endpoint I mentioned earlier.