Skip to content Skip to sidebar Skip to footer

Unable To Get Access Token For Linkedin Using Axios

I am trying to get access token following the steps described in Linkedin Oauth. I am trying to perform step 2 in the process to get an access token. I am using Axios for the POST

Solution 1:

Your code looks correct. The issue is because you are url encoding the redirect_uri parameter, remove that and it should work.

You only need to url encode the redirect_uri parameter when doing the initial request for the access code from the browser.


Post a Comment for "Unable To Get Access Token For Linkedin Using Axios"