gpt4 book ai didi

php - LinkedIn Api - 未捕获的异常 'OAuthException'

转载 作者:可可西里 更新时间:2023-11-01 01:05:09 25 4
gpt4 key购买 nike

我目前正尝试在我的网站上安装 LinkedIn 的登录按钮。正如开发人员部分所示,我正在尝试逐步进行。在我编写代码以获取请求 token 并使用 print_r 检查它之后。

define("my consumer key");
define("my consumer secret");

$oauth = new OAuth(my consumer key, my consumer secret);

//The first item of business is getting a request token
$request_token_response = $oauth->getRequestToken('https://api.linkedin.com/uas/oauth/requestToken');

if($request_token_response === FALSE) {
throw new Exception("Failed fetching request token, response was:"
. $oauth->getLastResponse());
} else {
$request_token = $request_token_response;
}

print "Request Token:\n";
printf(" - oauth_token = %s\n", $request_token['oauth_token']);
printf(" - oauth_token_secret = %s\n", $request_token['oauth_token_secret']);
print "\n";

我收到“ fatal error :未捕获异常‘OAuthException’...无法使用已知 CA 证书对对等证书进行身份验证”。错误调用的行在下面

$request_token_response = $oauth->getRequestToken('https://api.linkedin.com/uas/oauth/requestToken');

我不明白该错误试图告诉我什么,以便我可以解决问题。我将不胜感激并提供提示或指导,以帮助我更好地理解此错误消息试图传达的内容以及如何解决它。

最佳答案

似乎图书馆正在尝试验证 SSL 证书,但它无法这样做。您可以通过 OAuth::disableSSLChecks 方法禁用 ssl 检查。我假设您使用的是以下 pecl 扩展 http://www.php.net/manual/en/class.oauth.php .如果不是,您正在使用的客户端库应该有一种方法来禁用 SSL 证书验证。

....
...
$oauth = new OAuth(my consumer key, my consumer secret);
$oauth->disableSSLChecks();
..
...

理想情况下,您会在实例化后立即执行

关于php - LinkedIn Api - 未捕获的异常 'OAuthException',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12846458/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com