From: Harmon Date: Mon, 8 Feb 2021 08:47:02 +0000 (-0600) Subject: Add endpoint parameters for API.retweets_of_me X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=589d97d400ac343b84a7b4b1911c1fb87d6e0ef6;p=tweepy.git Add endpoint parameters for API.retweets_of_me trim_user, include_entities, include_user_entities --- diff --git a/tweepy/api.py b/tweepy/api.py index 2a3b993..ec3b49f 100644 --- a/tweepy/api.py +++ b/tweepy/api.py @@ -300,7 +300,8 @@ class API: """ return self.request( 'GET', 'statuses/retweets_of_me', endpoint_parameters=( - 'since_id', 'max_id', 'count' + 'count', 'since_id', 'max_id', 'trim_user', 'include_entities', + 'include_user_entities' ), **kwargs )