0
votes

My question is similar for 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 and others, but works with /v2/organizations/ endpoint (that's why I think the app is already applied for api: https://business.linkedin.com/marketing-solutions/marketing-partners/become-a-partner/marketing-developer-program).

That's not my app - my client's one.

My task is getting members' info, but any calls to /v2/people/ endpoint fall.

The r_basicprofile permission is set and I no need for extra profile fields.

Now I see a couple of problems with linkedin REST API:

I asked about this on linkedin help forum. I don't understand is this api works or not?

Does anyone have a successful experience with /v2/people/ endpoint?

1
Do you still have issues with the above API endpoint or this question is no longer relevant?rags2riches
I didn't checked. I changed my code logic and don't use API calls.Vitaly

1 Answers

0
votes

if you really want to use V2 apply to the partnership that is required. but because you need only basic profile info try this :

https://api.linkedin.com/v1/people/~:(id,first-name,last-name,headline,picture-url,email-address,public-profile-url)?format=json

this will return the information of the person who is loggedin. if you want information of another person try this:

 https://api.linkedin.com/v1/people/[user_id]:(id,first-name,last-name,headline,picture-url,email-address,public-profile-url)?format=json

hopefully this works for you.