I am encountering a problem with LinkedIn's API V2; I am using OAuth 2.0 authentication and have specified on the request all the scopes what we have “profile”, “email”, “openid”.
I don't have these scopes r_liteprofile an r_basicprofile.
When I send this request to “” for example, I only get basic profile information.
But for example this request people/(id:{profile_id}?projection=(id,localizedFirstName,localizedLastName), I got the error message “Not ‘enough permissions to access: people.GET.NO_VERSION’.
With the old version V1 everything was still fine when we send this request . com/v1/people/~...
My questions are why am I getting this error message:“Not enough permissions to access: people.GET.NO_VERSION”,
And how do I get the same data with the API V2 as before with the APi V1?
Request: :(id,first-name,last-name,headline,picture-url,industry,summary,specialties,positions:(id,title,summary,start-date,end-date,is-current,company:(id,name,type,size,industry,ticker)),educations:(id,school-name,field-of-study,start-date,end-date,degree,activities,notes),associations,interests,num-recommenders,date-of-birth,publications:(id,title,publisher:(name),authors:(id,name),date,url,summary),patents:(id,title,summary,number,status:(id,name),office:(name),inventors:(id,name),date,url),languages:(id,language:(name),proficiency:(level,name)),skills:(id,skill:(name)),certifications:(id,name,authority:(name),number,start-date,end-date),courses:(id,name,number),recommendations-received:(id,recommendation-type,recommendation-text,recommender),honors-awards,three-current-positions,three-past-positions,volunteer)";
Thak you for your help.
Maybe someone has had the same problem before and he can share his experience with us.