-
Notifications
You must be signed in to change notification settings - Fork 601
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 deprecated OAuth login in favour of OIDC #519
Comments
Thanks for reporting this @yktoo In this case, would changing the scopes in the code be sufficient, or would any API endpoints need to be updated? |
No, I tried with the above scopes and that's what results in a 403. I'm not sure what else needs to be changed. |
I have this issue too, can verify what @yktoo said. Please advise. |
@techknowlogick I would like to know about this too. I am getting a 403 during the callback. Here's my setup |
I managed to successfully add LinkedIn login using the standard OIDC provider. In the end it turned out to be not that much different from other You may want to have a look at Comentario auth implementation and docs. I believe the issue can be closed now. |
Thanks for the prompt response @yktoo! Will do so |
The deprecation notice:
This leads to a change of scopes: instead of
r_liteprofile
,r_emailaddress
only the following is now available:oidc
profile
email
As a consequence, fetching profile in goth now fails with 403 Forbidden (here).
The text was updated successfully, but these errors were encountered: