我正在使用 django-socialregistration 应用程序允许人们通过 FB 登录我的网站。
http://django-socialregistration.readthedocs.org/en/latest/index.html
对于 twitter,它工作正常,但对于 facebook,它在用户登录到 fb 后不断返回此错误:
Credentials could not be validated, the provider returned no access token.
这是应用程序中设置的错误,将在函数中返回(应用程序附带):
def get_access_token(self, code=None, **params):
"""
Return the memoized access token or go out and fetch one.
"""
if self._access_token is None:
if code is None:
raise ValueError(_('Invalid code.'))
self.access_token_dict = self._get_access_token(code, **params)
try:
self._access_token = self.access_token_dict['access_token']
except KeyError, e:
raise OAuthError("Credentials could not be validated, the provider returned no access token.")
所以我猜找不到或检索到访问令牌。
当我输入 url 时,Facebook 调试器工具会返回这个,
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC- html40/loose.dtd">
<html>
<head><meta http-equiv="content-type" content="text/html; charset=utf-8"></head>
<body><p>Session expired.</p></body>
</html>
这是网址:
www.site.com/social/facebook/callback/?code=AQCb0lWCOTKFYaCQ43imfKvsMgo-8wyA8aq1WxZDWuCel2868I6gou2rn4bN2kTyuL14FxR9cCvrilJB2R5-JOnQqCvo7ihQAi9outrUB81MQdU-XA-5ur7MT5Wlhz3wkb5bc0fwzUYYFpSyeHNjFrIOY6QdZNdrXLcivv1-3qMNOKijLHf0jmZc7bBqPBTkw-Q#_=_
FB调试器所说的响应代码是200。
有谁知道发生了什么?