python-twitter icon indicating copy to clipboard operation
python-twitter copied to clipboard

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

Open stephen-calm opened this issue 2 years ago • 2 comments

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}]

stephen-calm avatar Jul 12 '23 14:07 stephen-calm

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

JohnKun136NVCP avatar Jul 28 '23 08:07 JohnKun136NVCP

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

jeremad avatar Aug 14 '23 09:08 jeremad