From 589d97d400ac343b84a7b4b1911c1fb87d6e0ef6 Mon Sep 17 00:00:00 2001 From: Harmon Date: Mon, 8 Feb 2021 02:47:02 -0600 Subject: [PATCH] Add endpoint parameters for API.retweets_of_me trim_user, include_entities, include_user_entities --- tweepy/api.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 ) -- 2.25.1