我们之前使用的是api.linkedin.com/v1/
现在它不再可用,因此我们正在尝试使用V2 API,但我们
正面临以下错误。
我使用客户端ID获得了访问令牌(范围:r_liteprofile,r_emailaddress,w_member_social
),
以下网址的客户机密:
https://www.linkedin.com/oauth/v2/authorization https://www.linkedin.com/oauth/v2/accessToken
向https://api.linkedin.com/v2/me
端点发出请求:
curl -H“授权:承载ACCESS_TOKEN” -H“接受:application / json” -H“内容类型:application / json” -H“ X-Restli-Protocol-Version:2.0.0” https://api.linkedin.com/v2/me
3. Get response:
json
{
"serviceErrorCode": 100,
"message": "Not enough permissions to access /me GET ",
"status": 403
}
Is we required some more permissions?