The documented way of setting the permissions scope for facebook is:
SOCIAL_AUTH_FACEBOOK_EXTENDED_PERMISSIONS = ['email']
This was not working and after looking at the source code I found that it is working with:
SOCIAL_AUTH_FACEBOOK_SCOPE = ['email']
I guess we have a documentation bug here.
The documented way of setting the permissions scope for facebook is:
This was not working and after looking at the source code I found that it is working with:
I guess we have a documentation bug here.