bear / python-twitter

A Python wrapper around the Twitter API.
Apache License 2.0
3.41k stars 955 forks source link

Endpoint Access, Is this an issue with the script or with Twitter changing something? #722

Open stephen-calm opened 11 months ago

stephen-calm commented 11 months ago

status = api.PostUpdate('I love python-twitter!')

twitter.error.TwitterError: [{'message': 'You currently have access to a subset of Twitter API v2 endpoints and limited v1.1 endpoints (e.g. media post, oauth) only. If you need access to this endpoint, you may need a different access level. You can learn more here: https://developer.twitter.com/en/portal/product', 'code': 453}]

JohnKun136NVCP commented 11 months ago

May your code is not wrong, I've been same issue, but it's about Twitter's API since if your check this link, you will see that you have to pay to get new environments for your App is working. It's my app but it's free so if you see: image

And my endpoints (free plan): image So if my code is this, it'll be same issue

api = tweepy.API(auth)
statuses = api.home_timeline()
for status in statuses:
    print(statuses.user.screen_name)

With $100 USD per month (Basic plan): image

jeremad commented 10 months ago

Seems like the 1.1 API to post tweets is not a free API anymore, we should switch to the v2 API:

https://twittercommunity.com/t/understanding-the-error-453-you-currently-have-access-to-a-subset-of-twitter-api-v2-endpoints/200361

They published an example, the interesting part is after line 51: https://github.com/twitterdev/Twitter-API-v2-sample-code/blob/main/Manage-Tweets/create_tweet.py#L51