Has the functionality to use a partial pipeline process been implemented? I'm trying to do the same thing as bennetb01 - let my users authenticate with the social provider and then enter data in a form before user creation. If someone could recommend a good way of doing this that would be...
in settings.pySOCIAL_AUTH_CREATE_USERS = Falsethen you should override or change "complete" function in social_auth/views.py and turn it into your required one.you can use: kwargs.get('details') kwargs.get('uid')to get what you want and save them in SESSION (or...