Reputation: 3
I'm trying to retrieve data from twitter API using tweepy and Twitter doesn't allow me to connect to their API. here's what it said:
"*403 Forbidden 453 - You currently have Essential access which includes access to Twitter API v2 endpoints only. If you need access to this endpoint, you’ll need to apply for Elevated access via the Developer Portal. You can learn more here: https://developer.twitter.com/en/docs/twitter-api/getting-started/about-twitter-api#v2-access-leve*"
i've been applied to Elevated access from a week ago and still has no response. Any solution?
Upvotes: 0
Views: 492
Reputation:
Using tweepy to connect to the Twitter API, you can use the tweepy.Client
object (instead of the tweepy.API
object) to access Twitter API v2.
Upvotes: 0