我想用 django-social-auth 创建应用程序。如何让用户更新推特状态? 我尝试使用tweepy,但它写信给我:
Invalid / expired Token
我在我的应用中使用 consumer_key 和 consumer_secret ,在 usersocialauth <中使用 oauth_token_secret oauth_token_secret / strong>数据库中的表。
auth = tweepy.OAuthHandler(settings.TWITTER_CONSUMER_KEY, settings.TWITTER_CONSUMER_SECRET)
auth.set_access_token(str(oauth_token), str(oauth_token_secret))
api = tweepy.API(auth)
api.update_status(TwiAge)
我做错了什么?