向 LinkedIn API 发出请求导致 401

Making request to LinkedIn API results in 401

我正在尝试使用 PHP 为 à LinkedIn 用户个人资料创建 API。 我已经成功注册了我的应用程序,并且记下了我的 API 和密钥,并列出了我的重定向 url.

用户从这个页面开始:index.php。此页面包含 link 到 linkedIn 对话框:

<a href="https://www.linkedin.com/uas/oauth2/authorization?response_type=code&client_id=<?php echo $api_key ?>&state=<?php echo $state ?>&redirect_uri=<?php echo $redirect_uri ?>">Apply Now</a>

当我单击此 link 时,我使用我的详细信息登录 LinkedIn,并成功重定向到 application_form.php。我现在想从这里获取用户个人资料详细信息:

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://www.linkedin.com/v1/people/~");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$output = curl_exec($ch);
curl_close($ch);
var_dump($output);

但是上面的代码导致输出:

"401 Unknown authentication scheme"

经过一些研究,我想这可能是因为我此时还没有获得访问令牌?有人知道我应该怎么做才能解决这个问题吗?

对于正在阅读本文并想使用 LinkedIn Profile API 的任何人,我的问题的解决方案是我在尝试发出第一个请求时没有有效的 Access Token

我做的第一件事是创建一个 link 将用户定向到 LinkedIn 身份验证对话框。

接下来,用户将选择批准或拒绝我的应用请求以访问他们的个人资料。无论他们的选择如何,他们都会被重定向到我的 redirect url.

从这里我现在有一个 access code,我可以用它来请求 access token,从而进行 api 调用。

if (isset($_GET['error'])) {
    echo $_GET['error'] . ': ' . $_GET['error_description'];
} elseif (isset($_GET['code'])) {
    getAccessToken();
    //$user = fetch('GET', '/v1/people/~:(firstName,lastName)');//get name
    //$user = fetch('GET', '/v1/people/~:(phone-numbers)');//get phone numbers
    $user = fetch('GET', '/v1/people/~:(location:(name))');//get country
    var_dump($user);
}

我根据LinkedIn Developers网站上的代码使用的getAccessToken()方法

https://developer.linkedin.com/documents/code-samples

 function getAccessToken() {
    $params = array(
        'grant_type' => 'authorization_code',
        'client_id' => 'MY API KEY',
        'client_secret' => 'MY SECRET KEY',
        'code' => $_GET['code'],
        'redirect_uri' => 'MY REDIRECT URL',
    );
    // Access Token request
    $url = 'https://www.linkedin.com/uas/oauth2/accessToken?' . http_build_query($params);
    // Tell streams to make a POST request
    $context = stream_context_create(
            array('http' =>
                array('method' => 'POST',
                )
            )
    );
    // Retrieve access token information
    $response = file_get_contents($url, false, $context);
    // Native PHP object, please
    $token = json_decode($response);
    // Store access token and expiration time
    $_SESSION['access_token'] = $token->access_token; // guard this! 
    $_SESSION['expires_in'] = $token->expires_in; // relative time (in seconds)
    $_SESSION['expires_at'] = time() + $_SESSION['expires_in']; // absolute time
    return true;
}

然后fetch()方法,同样来自领英API

function fetch($method, $resource, $body = '') {
    $opts = array(
        'http' => array(
            'method' => $method,
            'header' => "Authorization: Bearer " . 
            $_SESSION['access_token'] . "\r\n" . 
            "x-li-format: json\r\n"
        )
    );
    $url = 'https://api.linkedin.com' . $resource;
    if (count($params)) {
        $url .= '?' . http_build_query($params);
    }
    $context = stream_context_create($opts);
    $response = file_get_contents($url, false, $context);
    return json_decode($response);
}

通过执行上述操作,我可以毫无问题地向 API 发出请求。公平地对待上面评论的 Cbroe。我错过了这个信息。如果 he/she 想留下答案,我会很乐意接受,但以防万一我已经为遇到我遇到的问题的任何人提供了我的解决方案。