Re: django-allauth facebook doesn't collect more information other than "name" and "id"

2018-10-09 Thread Pepal
Google gives you permission to access user data, but it will not send unless you ping the endpoint to get the birthday. so make sure your app is pinging the correct endpoint. On Wednesday, 29 November 2017 03:00:24 UTC+5:30, Shahab Emami wrote: > > no one is here to answer my question? > > On Mo

Re: django-allauth facebook doesn't collect more information other than "name" and "id"

2017-11-28 Thread Shahab Emami
no one is here to answer my question? On Monday, November 2, 2015 at 3:57:32 PM UTC+3:30, Saleem Jaffer wrote: > > I tried adding facebook login to my application using django-allauth. > Unfortunately the only fields that get captured are "name" and "id". All > the other information is not captu

Re: django-allauth facebook doesn't collect more information other than "name" and "id"

2017-11-27 Thread Shahab Emami
hello i have the same problem but for the google. this is my settings: SOCIALACCOUNT_PROVIDERS = { 'google': { 'SCOPE': ['email', 'https://www.googleapis.com/auth/user.birthday.read', 'https://www.googleapis

Re: django-allauth facebook doesn't collect more information other than "name" and "id"

2015-11-02 Thread Vadim Serdiuk
First you should add SCOPE and FIELDS keys to facebook settings (in file settings.py) to allow allauth your website capture other information SOCIALACCOUNT_PROVIDERS = { 'facebook': { 'METHOD': 'oauth2', 'SCOPE': ['email', 'public_profile', 'user_friends'], 'AUTH_PARAM

django-allauth facebook doesn't collect more information other than "name" and "id"

2015-11-02 Thread Saleem Jaffer
I tried adding facebook login to my application using django-allauth. Unfortunately the only fields that get captured are "name" and "id". All the other information is not captured. This issue has already been addressed here: https://github.com/pennersr/django-allauth/issues/1061. Supposedly,