I'm trying to do a pretty standard Django sign up process with Python Social Auth. In my case the user:
- Picks their plan
- Picks their location
- Creates an account
I want to pass the the plan and location through the Python Social Auth process.
I've tried both:
SOCIAL_AUTH_FIELDS_STORED_IN_SESSION = ['plan', 'location']
FIELDS_STORED_IN_SESSION = ['plan', 'location']
I've tried both:
<form action="{% url "social:complete" "email" %}?plan={{ plan }}&location={{ location }}" method="post" role="form">
and:
<form action="{% url "social:complete" "email" %}" method="post" role="form">
<input type="hidden" name="plan" value="{{ plan }}" />
<input type="hidden" name="location" value="{{ location }}" />
In my register user pipeline, I've tried both:
plan = strategy.session_get('plan', "trial")
and:
plan = request.session['plan']
In no case is the variable passed through. Plan and location are always none. My register user is here:
SOCIAL_AUTH_PIPELINE = (
#'social.pipeline.debug.debug',
'social.pipeline.social_auth.social_details',
'social.pipeline.social_auth.social_uid',
'social.pipeline.social_auth.auth_allowed',
'social.pipeline.social_auth.social_user',
'social.pipeline.user.get_username',
'social.pipeline.mail.mail_validation',
'social.pipeline.user.create_user',
'myproject.pipelines.register_user',
'social.pipeline.social_auth.associate_by_email',
'social.pipeline.social_auth.associate_user',
'social.pipeline.social_auth.load_extra_data',
'social.pipeline.user.user_details',
)
This seems a REALLY common use case to be so difficult.
Here's the most common approach... start by creating a partial pipeline named
pipeline_user_plan.py
in one of your Django appsIn your
settings.py
That assumes in your
urls.py
you haveThen in your
views.py
which require a
forms.py
likeand a template
require-user-plan-form.html