如何使用IN.API.Profile(“我”)Javascript API调用获取公司详细信息

时间:2014-05-15 05:30:31

标签: javascript linkedin linkedin-jsapi

我正在尝试使用Linkedin JavaScript API调用获取公司详细信息和学术详细信息。

这是代码:

IN.API.Profile("me")
    .fields([
            "firstName","lastName","headline","positions:(company)","industry",
            "location:(name)","pictureUrl","publicProfileUrl","emailAddress",
            "educations","dateOfBirth"])
    .result(function(result) {
      console.log('inside onLinkedInLogin=============>');  
      console.log(result);  
      setLoginBadge(result.values[0]);
    })
    .error(function(err) {
      alert(err);
    });

获得教育的全部细节,包括学位,endDate,fieldOFStudey,id,schoolname, startDate等......

但对于职位,我只有公司的身份和姓名。

我想从诸如“顾问”和startDate,endDate,当前位置等位置名称等位置获取更多详细信息......

任何帮助都将受到高度赞赏。

1 个答案:

答案 0 :(得分:6)

我自己发现了一些研究,并希望这可以帮助某人......

IN.API.Profile("me")
    .fields([
            "firstName","lastName","headline","positions:(company,title,summary,startDate,endDate,isCurrent)","industry",
            "location:(name,country:(code))","pictureUrl","publicProfileUrl","emailAddress",
            "educations","dateOfBirth"])
    .result(function(result) {
      console.log('inside onLinkedInLogin=============>');  
      console.log(result);  
      setLoginBadge(result.values[0]);
    })
    .error(function(err) {
      alert(err);
    });