I am using LinkedIn-J. My application authenticates without problem, I get data from the user - even their first name, last name etc.
Person profile = client.getProfileForCurrentUser();
profile.getFirstName();
However, when I try to get the list of educations, the Educations
object returned is null
:
Educations educations = profile.getEducations();
educations == null
What can be the error? Should my application ask for special permissions to be granted?