📜  tweepy auth - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:46.167000             🧑  作者: Mango

代码示例1
auth = tweepy.OAuthHandler(consumer_key, consumer_secret)
auth.set_access_token(key, secret)
api = tweepy.API(auth)
api.update_status('tweepy + oauth!')