-
Notifications
You must be signed in to change notification settings - Fork 660
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Empty email with Facebook registration #355
Comments
@nioperas06 where you able to fix this issue? because I am facing the same issue. This is only on django rest auth. If I try facebook login using allauth i.e via /accounts/facebook/login I get email as well. |
I am facing this Issue here too. Did not try the allauth part. But at the REST AUTH api, some times, it do not come with email. |
Getting the same issue! |
Same on my side, how to fix this? |
I had the same problem, Adding "email" scope in request will solve the issue. |
I'm trying to do registration with Facebook Account. When I gave an Facebook access token, a new user has been created but email is set to null. I have something like this:
{ "token": "somejwttoken", "user": { "pk": 5, "username": "richard", "email": "", "first_name": "Richard", "last_name": "Sharpesen" } }
What's wrong?
The text was updated successfully, but these errors were encountered: