What is the API for canceling retweets (unretweet) on Twitter?

What is required to call the REST API to cancel / delete / delete / delete retweets (another user) from the timeline of the authenticated user? There is simply no mention of this in the API documentation on Twitter .

+5
source share
1 answer

Own retweets have all the attributes of a simple tweet, including a unique identifier. Thus, you can use the statuses / destroy method to remove it.

How to get this identifier depends on your application. First, it is returned by the statuses / retweet method . Secondly, you can get a custom timeline and parse the id of this tweet.

+5
source

All Articles