So I need to get my company's followers details.
I tried this :
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);
}
but that only returns the count of followers.
On the Linkedin Company page if you click on that number of followers link we can see a list of detailed followers. How can I get that list of detailed followers with Linkedin API ?
Thank you.