I have a problem with the LinkedIn JS API. Everything is configured and works fine when I run the application, and I have access to:
IN.API.Connections("me") .fields("id", "firstName", "lastName", "pictureUrl", "publicProfileUrl") .result(function(result, metadata) { console.log(result); });
but when I try to get an education, languages ββor other collections I cannot get .
The following code returns an empty object to me:
IN.API.Connections("me") .fields("educations") .result(function(result, metadata) { console.log(result); });
I have tried everything. Please help me.
Ps. When I use apigee.com or the JavaScript API Developer Console is not a problem.
source share