Linkedin Authentication
Authentication is failing I'm trying without success to get my users signed into LinkedIn via Oauth authentication in Python. I'm using Django in python and not using any third par
Solution 1:
Your login
code is redirecting to the OAuth 2.0 endpoint https://www.linkedin.com/uas/oauth2/authorization
but your callback loginsuccess
is trying to fetch the OAuth 1.0a token from https://api.linkedin.com/uas/oauth/accessToken
. You need to update your access_token_url
to the OAuth 2.0 endpoint https://www.linkedin.com/uas/oauth2/accessToken
per the LinkedIn docs.
Post a Comment for "Linkedin Authentication"