无法使用django-social-auth使用twitter登录

时间:2011-12-06 17:05:19

标签: twitter-oauth django-socialauth

我正在使用django-social-auth app(https://github.com/omab/django-social-auth)进行社交身份验证。

我向应用提供了consumer_key和consumer_secret。

当我写下登录到Twitter的链接时  http://127.0.0.1:8000/accounts/login/twitter,页面加载,就像发送请求一样,持续几秒钟,然后页面停止加载,没有任何重定向或任何其他反应

1 个答案:

答案 0 :(得分:5)

您需要在Twitter应用设置中指定回拨网址以指向localhost。

转到您的Twitter应用设置:

https://dev.twitter.com/apps

选择您的应用,然后点击“设置”标签。在“回拨URL”字段中键入:

http://127.0.0.1:8000

在网络上部署应用后,您需要返回此屏幕并更新回拨网址以指向应用的域名。