即使我的帐户处于活动状态,我也无法使用我的 Twitter 开发者帐户进行身份验证
\nimport tweepy\nconsumer_key= 'XX1'\nconsumer_secret= 'XX2'\naccess_token= 'XX3'\naccess_token_secret= 'XX4'\nauth = tweepy.OAuthHandler(consumer_key, consumer_secret)\nauth.set_access_token(access_token, access_token_secret)\napi = tweepy.API(auth)\napi.update_status("Hello Tweepy")\nRun Code Online (Sandbox Code Playgroud)\n我收到错误:
\nForbidden: 403 Forbidden\n\n453 - You currently have Essential access which includes access to Twitter API v2 endpoints only. If you need access to this endpoint, you\xe2\x80\x99ll 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\nRun Code Online (Sandbox Code Playgroud)\n开发者门户上没有从 Essential 升级到 Elevated 的选项。有什么建议吗?
\n