Linkedin Api "empty Oauth2 Access Token" Error
Sorry if this is question is not suitable for stackoverflow. I've got access token from Linkedin API. I am trying to use it however I am not sure how to include my access_token. I
Solution 1:
The access token param you need to pass is oauth2_access_token
not access_token
.
For example:
https://api.linkedin.com/v2/me?oauth2_access_token={linkedin_key}
I can't find it in the docs and it's been a while, but that's how I use it in my app.
Solution 2:
I think they want you to pass it in the headers based on my reading of their docs
requests.get(base_url,headers={"Authorization":"Bearer {access_token}"}).json()
Post a Comment for "Linkedin Api "empty Oauth2 Access Token" Error"