Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

django-social-auth : did not save twitter's email

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 = '.........'
like image 491
gadss Avatar asked Jun 01 '12 06:06

gadss


1 Answers

twitter does not provide the email. As much you will have access to the data provided when verifying the credentials

like image 81
jdcaballerov Avatar answered Sep 21 '22 05:09

jdcaballerov