Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm using django-allauth for my authentication system. I need that when the user sign in, the profile module get populated with the provider info (in my case facebook).

I'm trying to use the pre_social_login signal, but I just don't know how to retrieve the data from the provider auth

from django.dispatch import receiver
from allauth.socialaccount.signals import pre_social_login

@receiver(pre_social_login)

def populate_profile(sender, **kwargs):
    u = UserProfile( >>FACEBOOK_DATA<< )
    u.save()

Thanks!!!

share|improve this question

1 Answer

up vote 3 down vote accepted

The pre_social_login signal is sent after a user successfully authenticates via a social provider, but before the login is actually processed. This signal is emitted for social logins, signups and when connecting additional social accounts to an account.

So it is sent before the signup is fully completed -- therefore this not the proper signal to use.

Instead, I recommend you use allauth.account.signals.user_signed_up, which is emitted for all users, local and social ones.

From within that handler you can inspect whatever SocialAccount is attached to the user. For example, if you want to inspect Google+ specific data, do this:

user.socialaccount_set.filter(provider='google')[0].extra_data

UPDATE: the latest development version makes this a little bit more convenient by passing along a sociallogin parameter that directly contains all related info (social account, token, ...)

share|improve this answer
I had to use it this way: kwargs.get('user').socialaccount_set.filter(provider='facebook').extra_data but when I do so, I get this error: AttributeError at /accounts/facebook/login/callback/ 'QuerySet' object has no attribute 'extra_data' Thanks for the answer man!! Your app is awesome – Tomer Simis Jan 26 at 4:27
Oops, my example was wrong (I just corrected it). I forgot to pick an item from the queryset ([0]), as in: ".filter(...)[0]..." – pennersr Jan 26 at 12:12
That worked! Thanks a lot! – Tomer Simis Jan 26 at 13:50

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.