How to "Retweet with comment" via Twitter API

Recently, Twitter has implemented an automatic way to quote tweets. It basically extracts the url from the tweet and shows that it is embedded in your tweet.

My problem: how can I rephrase with a comment without showing the original tweet url via the API?

Website engagement makes RT look like this enter image description here .

But when I manually add the tweet url to my tweet, it looks like enter image description here .

Pay attention to the literal url.

+6
source share
1 answer

I understand that you are reaching the closest solution offered by the Twitter API. This thread says the following:

  • perform a status update with the β€œstatus” field containing the text of the original tweet, and then a link to the original tweet. Field 'in_reply_to_status_id' should not be set. This action does not increase the number of retries.
  • make a retweet , which will increase the number of retweets .
+4
source

Source: https://habr.com/ru/post/985286/


All Articles