Answer the question
In order to leave comments, you need to log in
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
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question