I have a problem with LinkedIn JS API. Everything is configured and works fine when i run app 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 educations, languages or others collections i cant get it.
Following code returns for me an empty object:
IN.API.Connections("me")
.fields("educations")
.result(function(result, metadata) {
console.log(result);
});
I've tried everything. Please give me some help.
Ps. When i use apigee.com or JavaScript API Developer Console there is no issue.
r_fullprofilepermissions to get the educations values. – Paul Mennega Nov 26 '12 at 16:26