Django Social Auth没有重定向到下一个url?

时间:2014-10-26 21:19:56

标签: python django facebook-login django-socialauth

所以我想在登录到同一页面后重定向。但是Django Social Auth并没有重定向。 它会重定向到"/pins/#_=_

HTML:

<a href="{% url socialauth_begin 'facebook' %}?next={{ request.get_full_path }}">Facebook Login</a>

Urls.py

url(r'^$', 'pinry.core.views.home', name='home')

Views.py

def home(request):
    if request.user.is_authenticated():
        if 'next' in request.GET:
            return HttpResponseRedirect(request.GET['next'])
        else:    
            return HttpResponseRedirect('/pins'))
    return HttpResponseRedirect(reverse('core:concept'))

Settings.py

LOGIN_URL          = '/login-form/'
LOGIN_REDIRECT_URL = '/'
LOGIN_ERROR_URL    = '/login-error/'
SOCIAL_AUTH_LOGIN_REDIRECT_URL = '/'
SOCIAL_AUTH_NEW_USER_REDIRECT_URL = '/pins/'
SOCIAL_AUTH_NEW_ASSOCIATION_REDIRECT_URL = '/new-association-redirect-url/'
SOCIAL_AUTH_DISCONNECT_REDIRECT_URL = '/account-disconnected-redirect-url/'
SOCIAL_AUTH_BACKEND_ERROR_URL = '/new-error-url/'

SOCIAL_AUTH_COMPLETE_URL_NAME  = 'socialauth_complete'
SOCIAL_AUTH_ASSOCIATE_URL_NAME = 'socialauth_associate_complete'
SOCIAL_AUTH_DEFAULT_USERNAME = 'new_social_auth_user'

TEMPLATE_CONTEXT_PROCESSORS = (
...
    "social_auth.context_processors.social_auth_by_name_backends",
    'social_auth.context_processors.social_auth_backends',
    'social_auth.context_processors.social_auth_by_type_backends',
    'social_auth.context_processors.social_auth_login_redirect',
    "django.core.context_processors.csrf"
    )

2 个答案:

答案 0 :(得分:1)

我遇到了与您相同的问题,我通过将登录按钮的URL更改为

<a href="{% url 'social:begin' 'github' %}>

<a href="{% url 'social:begin' 'github' %}?next={{ request.GET.next }}>

答案 1 :(得分:0)

LOGIN_REDIRECT_URL = '/pins/'更改为LOGIN_REDIRECT_URL = '/',或者您想要重定向的任何内容 此属性告知登录后重定向的位置