skip to Main Content

Twitter-api – Can't query Twitter API v2 with elevated acces project/app

I'm trting to query Twitter API v2 with elevated research access via tweepy, but it still gives me a 403 Forbidden. client = tweepy.Client( bearer_token=BEARER_TOKEN, # consumer_key=CONSUMER_KEY, # consumer_secret=CONSUMER_SECRET, # access_token=OAUTH_ACCESS_TOKEN, # access_token_secret=OAUTH_ACCESS_TOKEN_SECRET, ) test = client.search_all_tweets(query="#something", start_time = "2023-01-01")…

VIEW QUESTION
Back To Top
Search