In my app, I need an email for every user. Facebook inconveniently for me does not provide it as a part of public profile. So I ask for permission:
SOCIAL_AUTH_FACEBOOK_SCOPE = ['email', 'public_profile']
SOCIAL_AUTH_FACEBOOK_PROFILE_EXTRA_PARAMS = {
'fields': 'id,name,email',
}
Now, user has the option to not grant the email permission. I want to make registration impossible without granting this permission. How do I do it?