From a8dd7278ac4fcd542717caf6e8a58480a47886ab Mon Sep 17 00:00:00 2001 From: Harmon Date: Tue, 23 Feb 2021 21:57:43 -0600 Subject: [PATCH] Properly pass query for Client.search_all_tweets --- tweepy/client.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tweepy/client.py b/tweepy/client.py index be6567d..ef1a6de 100644 --- a/tweepy/client.py +++ b/tweepy/client.py @@ -286,6 +286,7 @@ class Client: Search Tweets: Full-archive search https://developer.twitter.com/en/docs/twitter-api/tweets/search/api-reference/get-tweets-search-all """ + params["query"] = query return self._make_request( "GET", "/2/tweets/search/all", params=params, endpoint_parameters=( -- 2.25.1