[Django]-Django social-auth: Fetching date of birth, address, and more fields from facebook

6👍

For the extended permissions with django-social-auth you need to add them to the request selecting permissions you want from facebook permissions. For example in your case, you probably want user_about_me or user_birthday.

FACEBOOK_EXTENDED_PERMISSIONS = ['user_about_me']

For example.

👤jvc26

Leave a comment