有一个美好的一天程序员。
我只想知道是否可以在linkedIn oauth2中搜索人物(通过名字,姓氏)。我使用这个(/ v1 / people /〜:( firstName,lastName)代码来查找我自己的个人资料名字和工作正常,从here获得。但如果我尝试make people/company search
它会向我显示错误。我谷歌但没有找到任何相关的答案还有一个问题是如何在oauth2中创建这个搜索查询,任何示例代码或引用或文档都非常有用。
我的代码
$user2 = fetch('GET', '/v1/people-search::(~,id,first-name=kamesh,last-name=waran):(id,first-name,last-name,educations)');
function fetch(){
$params = array('oauth2_access_token' => $_SESSION['access_token'],
'format' => 'json'
);
$url = 'https://api.linkedin.com' . $resource . '?' . http_build_query($params);
$context = stream_context_create(
array('http' =>
array('method' => $method,
)
)
);
$response = file_get_contents($url, false, $context);
return json_decode($response);
}
提前致谢。