【发布时间】:2021-12-31 01:21:05
【问题描述】:
即使我的帐户处于活动状态,我也无法使用我的 twitter 开发者帐户进行身份验证
import tweepy
consumer_key= 'XX1'
consumer_secret= 'XX2'
access_token= 'XX3'
access_token_secret= 'XX4'
auth = tweepy.OAuthHandler(consumer_key, consumer_secret)
auth.set_access_token(access_token, access_token_secret)
api = tweepy.API(auth)
api.update_status("Hello Tweepy")
我遇到了错误:
Forbidden: 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
在开发者门户上没有从 Essential 到 Elevated 的选项。有什么建议吗?
【问题讨论】:
标签: python twitter tweepy twitterapi-python