I can see the education schema here for linkedin:
So I updated api based on the schema to as follows:
=(id,educations*(id,degreeName,fieldOfStudyName,grade,anization,schoolName,activities,notes,startMonthYear,endMonthYear),vanityName,education,profilePicture(displayImage~:playableStreams))
My scopes include: r_basicprofile
But still the response doesnot have education data. Futhermore nowhere in docs I find leads for how to get the work experience data(both after user consent through 3 legged oauth provided by linkedin).
Tried:
curl --location '=(id%2Ceducations*(id%2CdegreeName%2CfieldOfStudyName%2Cgrade%2Canization%2CschoolName%2Cactivities%2Cnotes%2CstartMonthYear%2CendMonthYear)%2CvanityName%2Ceducation%2CprofilePicture(displayImage~%3AplayableStreams))' \
--header 'Authorization: Bearer *****' \
--header 'Cookie: lidc="b=VB70:s=V:r=V:a=V:p=V:g=3812:u=579:x=1:i=1739531668:t=1739596333:v=2:sig=AQEmhA5WATVBsuHSAlSUkNtb0anAcLnd"; bcookie="v=2&5eb07c7b-5a25-4b4f-8a0b-f82f87499c25"'
Was expecting: education data in response but is missing.