我看到你必须使用 make new url " https://api.linkedin.com/v1/people/~:(positions:(company:(name))) " 但是如何实现它,我总是未经授权返回
问问题
256 次
1 回答
0
Here is my code snippet to get Work Experience:
Person p = client.getProfileForCurrentUser(EnumSet.of(
ProfileField.ID, ProfileField.FIRST_NAME,
ProfileField.LAST_NAME, ProfileField.HEADLINE,ProfileField.EDUCATIONS,
ProfileField.INDUSTRY, ProfileField.PICTURE_URL,ProfileField.INTERESTS,
ProfileField.DATE_OF_BIRTH, ProfileField.LOCATION_NAME,ProfileField.EMAIL_ADDRESS,
ProfileField.SKILLS,ProfileField.POSITIONS,
ProfileField.MAIN_ADDRESS, ProfileField.LOCATION_COUNTRY));
Positions positions =p.getPositions();
for (Position position : positions.getPositionList()) {
linkedinInfo=linkedinInfo+" :\n"+position.getCompany().getName();
}
于 2015-02-04T08:06:30.763 回答