How do I create a pipeline in python-social-auth, fill in data in a form?

2

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?

    
asked by Felipe Zuluaga 02.09.2016 в 23:11
source

1 answer

2

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.

    
answered by 20.09.2016 / 16:56
source