Django-social-auth和twitter更新状态

时间:2011-10-27 12:10:43

标签: python twitter django-socialauth

我想用 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)

我做错了什么?

0 个答案:

没有答案