Django/ Python-social-auth: Linkedin Extra Data Returns Null On Some Fields
I am using python-social-auth to retrieve LinkedIn profile data in Django. Login with LinkedIn&l
Solution 1:
The settings to obtain the extra data must be in the following format:
SOCIAL_AUTH_LINKEDIN_FIELD_SELECTORS = [
'public-profile-url',
'email-address',
'interests',
'skills',
]
SOCIAL_AUTH_LINKEDIN_SCOPE = ['r_basicprofile', 'r_emailaddress']
Post a Comment for "Django/ Python-social-auth: Linkedin Extra Data Returns Null On Some Fields"