We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
provider :facebook, ENV['FACEBOOK_APP_ID'], ENV['FACEBOOK_APP_SECRET'], scope: ['email', 'public_profile']
The authorization appears to succeed, but I only receive basic fields in the callback payload:
{ "provider":"facebook", "uid":<redacted>, "info":{ "name":<redacted>, "image":<redacted>, "credentials":{ "token":<redacted>, "expires_at":1442319308, "expires":true }, "extra":{ "raw_info":{ "name":<redacted>, "id":<redacted> } } } }
I can't find anything wrong with my code, judging by docs I've found and followed. Is this a bug?
The text was updated successfully, but these errors were encountered:
You need to provide info_fields parameter with needed fields. See info_fields in README.md. Fix to get email by default will be probably merged soon
info_fields
Sorry, something went wrong.
No branches or pull requests
provider :facebook, ENV['FACEBOOK_APP_ID'], ENV['FACEBOOK_APP_SECRET'], scope: ['email', 'public_profile']
The authorization appears to succeed, but I only receive basic fields in the callback payload:
I can't find anything wrong with my code, judging by docs I've found and followed. Is this a bug?
The text was updated successfully, but these errors were encountered: