我正在使用django-facebook- https://github.com/tschellenbach/Django-facebook进行身份验证。但是我无法正确配置登录重定向。
文档说使用此代码使重定向工作
<form action="{% url 'facebook_connect' %}?facebook_login=1" method="post">
<input type="hidden" value="{{ request.path }}" name="next" />
<input type="hidden" value="{{ request.path }}" name="register_next" />
<input type="hidden" value="{{ request.path }}" name="error_next" />
{% csrf_token %}
<input onclick="F.connect(this.parentNode); return false;" type="image" src="{{ STATIC_URL}}django_facebook/images/facebook_login.png" />
</form>
我使用与上面相同的代码,但登录始终重定向到
http://localhost:8000/#_=_
答案 0 :(得分:0)
看看
LOGIN_REDIRECT_URL
默认值:'/ accounts / profile /'
当contrib.auth.login视图没有下一个参数时,登录后重定向请求的URL。
https://docs.djangoproject.com/en/1.6/ref/settings/