-
-
Notifications
You must be signed in to change notification settings - Fork 158
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
Linkedin r_fullprofile scope login failed #333
Comments
That looks expected to me. You can't just suddenly change your scope and expect everything to work without asking users to re-authorize. They need to grant permissions for the updated scopes. |
But how? I thought that there was an app permissions problem |
@chatzich I think maybe we're misunderstanding each other. What are the exact steps to reproduce this problem? |
Yes I think that my application does not have the r_fullprofile scope permission that's why I am getting the error if the app had the permission the linked api service should ask the user if he agrees to provide the new permissions |
Hello,
I try to create a login process with Linkedin OAuth service.
I have followed the instructions and retrieve the proper data of r_liteprofile
linkedin_bp = make_linkedin_blueprint(scope=["r_liteprofile"])
the user data provided by
r_liteprofile
is not enough for my purpose andI need the
r_fullprofile
scope data but unfortunately when I changed the scope tolinkedin_bp = make_linkedin_blueprint(scope=["r_fullprofile"])
The text was updated successfully, but these errors were encountered: