Linkedin API获得公司的关注者名单

时间:2016-06-09 09:30:30

标签: php linkedin

所以我需要了解我公司的粉丝详情。

我试过了:

public function getCompanyFollowers($company_id=""){
    if(!$company_id)return false;
    $params['url'] = "https://api.linkedin.com/v1/companies/".$company_id.":(num-followers)";
    $params['method']='get';
    $params['args']['format']='json';
    $result =  $this->makeRequest($params);
    return json_decode($result,true);
}   

但这只会返回关注者的数量。

在Linkedin公司页面上,如果您点击该关注者数量链接,我们可以看到详细关注者列表。 如何使用Linkedin API获取详细关注者列表?

谢谢。

2 个答案:

答案 0 :(得分:1)

我今天自己遇到了这个问题。

在撰写此回复时,访问LinkedIn公司页面的详细关注者列表不是公司API端点中的选项。

有关支持的公司API字段的完整列表,例如您的示例中使用的num-followers,请参阅this page

可以列出当前登录用户通过人员终端关注的公司:

http://api.linkedin.com/v1/people/~/following/companies

无法列出通过人员或公司终端关注公司的人员。

答案 1 :(得分:-1)

https://github.com/criexe/api/wiki/Social-Networks-Page-Stats-API

获取https://api.criexe.com/social/pageStats?linkedin=1035

结果(JSON)

{
   "linkedin":{
      "company":"1035",
      "followers":4342231
   },
   "total":4342231
}