GriMel
GriMel

Reputation: 2320

Google auth with django-allauth doesn't return email

When I log-in with Google - new user is created with first_name and last_name but no email specified.

Did I miss some changes or I need to specify somewhere - which fields I'd like to retrieve?

Upvotes: 1

Views: 171

Answers (1)

Anh Do Hoang
Anh Do Hoang

Reputation: 156

In the settings.py, you can add this line to get the email

SOCIALACCOUNT_QUERY_EMAIL = True

Upvotes: 2

Related Questions