From 920f82ba5ed219934a0a907a8e6a4a04a8c00400 Mon Sep 17 00:00:00 2001 From: Harmon Date: Wed, 3 Feb 2021 15:57:55 -0600 Subject: [PATCH] Add missing require_auth argument for API.request call in API.get_status --- tweepy/api.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tweepy/api.py b/tweepy/api.py index 314e411..7b4ee14 100644 --- a/tweepy/api.py +++ b/tweepy/api.py @@ -326,7 +326,8 @@ class API: 'GET', 'statuses/show', *args, allowed_param=['id', 'trim_user', 'include_my_retweet', 'include_entities', 'include_ext_alt_text', - 'include_card_uri'], **kwargs + 'include_card_uri'], + require_auth=True, **kwargs ) @payload('status') -- 2.25.1