Reputation: 2320
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
Reputation: 156
In the settings.py, you can add this line to get the email
SOCIALACCOUNT_QUERY_EMAIL = True
Upvotes: 2