Django-social-auth 和 twitter 更新状态

发布于 2024-12-11 23:10:37 字数 605 浏览 0 评论 0原文

我想使用 django-social-auth 创建应用程序。如何让用户更新 Twitter 状态的可能性? 我尝试使用 tweepy,但它写信给我:

Invalid / expired Token

我在应用程序中使用 consumer_keyconsumer_secret,以及 oauth_tokenoauth_token_secret strong> 来自数据库中的 usersocialauth 表。

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)

我做错了什么?

I want create application with django-social-auth. How can I get users possibility update twitter status?
I try to use tweepy, but it write me:

Invalid / expired Token

I use consumer_key and consumer_secret from my application, and oauth_token with oauth_token_secret from usersocialauth table in database.

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)

What I am doing wrong?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文