出于测试目的,我想从LinkedIn API获取我自己的完整个人资料数据。
到目前为止,我的代码看起来像这样:
// Fill the keys and secrets you retrieved after registering your app
$oauth = new OAuth("APIKEY", "SECRETKEY");
$oauth->setToken("Token OAuth", "Secret User OAuth");
$oauth->disableSSLChecks();
$params = array();
$headers = array();
$method = OAUTH_HTTP_METHOD_GET;
// Specify LinkedIn API endpoint to retrieve your own profile
$url = "https://api.linkedin.com/v1/people/~:(first-name,last-name,headline,location:(name),skills:(name),educations:(id,school-name,field-of-study))?format=json";
// By default, the LinkedIn API responses are in XML format. If you prefer JSON, simply specify the format in your call
// $url = "https://api.linkedin.com/v1/people/~?format=json";
// Make call to LinkedIn to retrieve your own profile
$oauth->fetch($url, $params, $method, $headers);
$oProfile = json_decode($oauth->getLastResponse());
var_dump($oProfile);
虽然我正在获取基本的个人资料信息(firstName,headline等...)但是当涉及完整的个人资料信息时,我每次都会得到一个带有'...'作为值的对象,尽管存在信息。
我的LinkedIn应用界面中有r_fullprofile,因此我不知道如何获取这些值。
答案 0 :(得分:2)
我使用自己的帐户尝试了您的查询。看起来你的问题在于技能领域。
您可以在LinkedIn API documentation中看到技能由技能组成,每个技能都有一个名称。如果你只想要返回的名称正确的方式来询问它
skills:(skill:(name))
,而您的请求要求skills:(name)
。
以下是针对您的更新请求:
GET https://api.linkedin.com/v1/people/~:(first-name,last-name,headline,location:(name),skills:(skill:(name)),educations:(id,school-name,field-of-study))?format=json