-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Unable to retrieve any extra_data from LinkedIn backend #161
Comments
Try with: SOCIAL_AUTH_LINKEDIN_EXTRA_DATA = [
('id', 'id'),
('firstName', 'first_name'),
('lastName', 'last_name'),
('emailAddress', 'email_address'),
('pictureUrl', 'picture_url'),
('publicProfileUrl', 'profile_url'),
] |
Sweet. That work! Thanks =) The documentation for LinkedIn backend should be updated then? I can make a pull request if you want? |
@stianpr, that's great, looking forward to that PR. |
@stianpr, I've made the change to the docs, they were fair simple, thanks for catching that. |
Sweet. And thanks for giving us a good authentication framework! |
The online docs are still showing the incorrect values even though I see they've been updated in the repo. Can you please update or is it no longer maintained? http://python-social-auth.readthedocs.org/en/latest/backends/linkedin.html |
Docs should be updated now. |
Looks great, thanks! |
Either I'm doing something wrong or there is a bug. I have tested with latest master and in 0.1.17.
After sucessfully created a user the extra_data field contains this:
I have these settings in my settings.py file:
And the
SOCIAL_AUTH_PIPELINE
setting contains'social.pipeline.social_auth.load_extra_data',
Any clues of why the extra_data fields are blank? Is there something I'm missing?
The text was updated successfully, but these errors were encountered: