我试图实现django-socialregistration
,包括所有依赖项,我只是遵循those instruction s。我在用facebook验证后出现此错误:
'WSGIRequest' object has no attribute 'facebook'
C:\Python25\lib\site-packages\socialregistration\views.py in facebook_login
108. if not request.facebook.check_session(request):
我错过了什么?一些中间件除外? thx:)
答案 0 :(得分:2)
实际上,你需要
'socialregistration.middleware.FacebookMiddleware'
在MIDDLEWARE_CLASSES
不是'facebook.djangofb..'
一个。
答案 1 :(得分:0)
解决。
在'facebook.djangofb.FacebookMiddleware'
中向MIDDLEWARE_CLASSES
添加settings.py
会将facebook
对象附加到每个传入的请求。