根据新的oauth 2.0 for linkedin。 我无法获取用户个人资料详细信息。 我在我的应用程序中设置了属性,但仍无法获取详细信息。
有人可以帮助我获取用户详细信息的代码段。
public function fetch($method, $resource, $body = '') {
$opts = array(
'http' => array(
'method' => $method,
'header' => "Authorization: Bearer " .
$_SESSION['oauth_access_token'] . "\r\n" .
"x-li-format: json\r\n"
)
);
$url = 'api.linkedin.com' . $resource;
if (count($this->$params)) {
$url .= '?' . http_build_query($this->$params);
}
$context = stream_context_create($opts);
$response = file_get_contents($url, false, $context);
return json_decode($response);
}
$xml_response = $LinkedInn->fetch("GET","/v1/people/~");
答案 0 :(得分:0)
使用链接登录时,请检查代码中的权限。 看看这个链接 -
https://developer.linkedin.com/support/developer-program-transition