Django-social-auth: Failed to save Twitter email address

when i turn to 127.0.0:8000/associate/twittermy django gets all the information about twitter except the email address.

there is no problem accessing 127.0.0:8000/associate/facebook, I'm just wondering why my django did not get the email address of the Twitter account?

Does anyone have an idea on how to solve my case? thanks in advance...

this is in my settings.py

FACEBOOK_APP_ID              = '.....'
FACEBOOK_API_SECRET          = '.........'
FACEBOOK_EXTENDED_PERMISSIONS = ['email']
#twitter
TWITTER_CONSUMER_KEY = '.........'
TWITTER_CONSUMER_SECRET = '.........'
+5
source share
1 answer

Twitter does not provide an email address. Once you have access to the credentials provided

+4
source

All Articles