django django-allauth save extra_data from social login in signal
问题 Setup I'm using Django 1.8.15 and django-allauth 0.28.0 Description What I want to do is pretty easy to explain: If a user logs in via social media (facebook, google+ or twitter) i want to retrieve the extra_data from sociallogin to get the url to the avatar and other information to store it in my Profile , which is a One-to-one relation to my User model. My approaches 1) First I added a class with pre_social_login like here which gets called after the user has signed in via social media.