when I access 127.0.0:8000/associate/twitter
, my django get all the twitter's information except for the email address.
there is no problem in accessing 127.0.0:8000/associate/facebook
, i was just wondering why my django did not get the email of the twitter account?
do 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 = '.........'