我在django中使用python social auth。在使用facebook时出现错误。
请提出任何建议,我是django的初学者。我在这个bug上试了几个小时。
答案 0 :(得分:0)
从提供的链接中,错误消息为:
error_message u'Invalid Scope: profile'
确保您使用的是最新版SDK并将范围从profile
更改为public_profile
答案 1 :(得分:0)
看看你的settings.py
,它说:
SOCIAL_AUTH_FACEBOOK_SCOPE = ['email', 'profile']
如果你已经更新了文件,我想你应该重启你的网络服务器。