我的问题与Linkedin v2 api: Not enough permissions to access: GET /countriesV2, LinkedIn V2 api: Not enough permissions to access /me GET, Not enough permissions to access /me GET和其他问题类似,但适用于 / v2 / organizations / 端点(这就是为什么我认为该应用程序已应用于api:https://business.linkedin.com/marketing-solutions/marketing-partners/become-a-partner/marketing-developer-program)。
那不是我的应用程序-我客户的应用程序。
我的任务是获取成员的信息,但是对 / v2 / people / 端点的任何呼叫都落空。
已设置 r_basicprofile 权限,我不需要其他配置文件字段。
现在我看到了linkedin REST API的两个问题:
我在linkedin帮助论坛上对此进行了询问。我不知道这个api是否有效?
有人在 / v2 / people / 端点上有成功的经验吗?
答案 0 :(得分:0)
如果您真的想使用V2,请申请所需的合作伙伴关系。 但由于您只需要基本的个人资料信息,请尝试以下方法:
https://api.linkedin.com/v1/people/~:(id,first-name,last-name,headline,picture-url,email-address,public-profile-url)?format=json
这将返回登录者的信息。 如果您需要其他人的信息,请尝试以下操作:
https://api.linkedin.com/v1/people/[user_id]:(id,first-name,last-name,headline,picture-url,email-address,public-profile-url)?format=json
希望这对您有用。