Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
Are you specifying the member permissions? You would need the r_fullprofile permissions to get the educations values. – Paul Mennega Nov 26 '12 at 16:26
@PaulMennega yes i have r_fullprofile and r_network – Rob K. Dec 1 '12 at 13:38
When you are authing the user, does the auth window explicitly state that you are asking for full profile, network permissions? – Paul Mennega Dec 1 '12 at 13:43

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.