INNER CODE UNIT · Python
unretweet
trevorhobenshield/twitter-api-client · twitter/account.py:259
def unretweet(self, tweet_id: int) -> dict:
variables = {"source_tweet_id": tweet_id, "dark_request": False}
return self.gql('POST', Operation.DeleteRetweet, variables)
def like(self, tweet_id: int) -> dict:
variables = {'tweet_id': tweet_id}
return self.gql('POST', Operation.FavoriteTweet, variables)
def unlike(self, tweet_id: int) -> dict:
variables = {'tweet_id': tweet_id}
return self.gql('POST', Operation.UnfavoriteTweet, variables)
def bookmark(self, tweet_id: int) -> dict:
variables = {'tweet_id': tweet_id}
return self.gql('POST', Operation.CreateBookmark, variables)
def unbookmark(self, tweet_id: int) -> dict:
variables = {'tweet_id': tweet_id}