Z
Z
zelsky2017-01-08 16:24:16
Django
zelsky, 2017-01-08 16:24:16

Anonymous User django auth?

Использую python-social-auth. Создал кастомный pipeline, все работает исправно, пользователя создает, привязывает к инстансу в дефолтной моделе пользователя. Кастомный pipeline отрабатывает на отлично, НО после создания пользователя джанга не далает для него авторизацию, тоесть при обращении к view request.user у меня AnonymousUser Кто сталкивался ? Думаю проблема в конфигах pipeline но из я брал с доков. Вопрос в следующем, как возможно авторизовать пользователя в кастомном pipeline ?

SOCIAL_AUTH_PIPELINE = (
    'social.pipeline.social_auth.social_details',
    'social.pipeline.social_auth.social_uid',
    'social.pipeline.social_auth.social_user',
    'social.pipeline.user.get_username',
    'social.pipeline.user.create_user',
    'social.pipeline.social_auth.auth_allowed',
    'social.pipeline.social_auth.associate_user',
    'social.pipeline.social_auth.load_extra_data',
    'social.pipeline.user.user_details',
    '####.pipeline.add_steam_data_marker',

)

Answer the question

In order to leave comments, you need to log in

1 answer(s)
Z
zelsky, 2017-01-08
@zelsky

Krch in AUTHENTICATION_BACKENDS don't use social.backends...... use social_core.backends.....

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question