我在哪里可以获得 python 应用程序的 Twitter 访问令牌?

Where can I get Twitter access Token for python app?

请先看一下python代码。

import tweepy

# necessary keys for authorisation 
API_KEY = 'your_api_key'
API_SECRET = 'your_api_secret'
ACCESS_TOKEN = 'your_access_token'
ACCESS_TOKEN_SECRET = 'your_access_token_secret'

# API authorisation 
auth = tweepy.OAuthHandler(API_KEY, API_SECRET)
auth.set_access_token(ACCESS_TOKEN, ACCESS_TOKEN_SECRET)

# get tweets by keywords 
api = tweepy.API(auth)
tweets = api.search(q=['Python'], count=10)

for tweet in tweets:
    print('-----------------')
    print(tweet.text)

我想让上面的男女同校工作,但是在我在 https://developer.twitter.com/en/apps/ 上请求 API 之后,他们只给了我 API 密钥,API 密钥秘密和 Bearer令牌。 ACCESS_TOKEN 和 ACCESS_TOKEN_SECRET 在哪里? 如下图所示,没有 ACCESS_TOKEN 和 ACCESS_TOKEN_SECRET

请告诉我如何解决。 提前谢谢你。

根据这个 link 在页面下方你可以看到你的 API 令牌,它应该也允许你生成访问令牌

https://developer.twitter.com/ja/docs/basics/authentication/guides/access-tokens