I need to make a registration using python-social-auth and Django, which uses Facebook data to pre-fill some fields of the user creation form.
Does anyone know how to do it?
I need to make a registration using python-social-auth and Django, which uses Facebook data to pre-fill some fields of the user creation form.
Does anyone know how to do it?
I solved it by adding a partial view 'pipeline' which sends the Facebook data to the registration view by get 'querystring', there I treated them and then continued with the python social auth pipeline.