我正在尝试使用linkedin公司搜索API获取公司信息。 在这里,我正在使用
$user = fetch('GET', '/v1/companies::(universal-name=example-companyname)');
$company = fetch('GET', '/v1/companies/'.$user->values[0]->id.':(id,name,ticker,description,universal-name,email-domains,company-type,website-url,industries,status,logo-url,square-logo-url,blog-rss-url,twitter-id,employee-count-range,specialties,locations,stock-exchange,founded-year,end-year,num-followers)');
在这里,我使用通用名称来获取公司信息。这绝对是正常的。现在,我需要使用网站网址获取相同的公司信息。
我的意思是,我需要将网站网址作为参数传递,并需要获取公司信息。