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_CONSUMER_KEY = '.........'
TWITTER_CONSUMER_SECRET = '.........'
source
share