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