我正在尝试连接到 LinkedIn API,但每次尝试访问它时都会出现以下错误:
致命错误:在第 8 行的 /home/vhosts/ * /test.php 中找不到类“OAuth”
我在 000WebHost 上使用免费服务器,并且我读到免费服务器有时不支持 OAuth。我已经在另一台免费服务器上尝试过,并且收到相同的错误消息,所以我的问题是如何检查服务器是否支持使用 OAuth?
这是我的代码:
// Fill the keys and secrets you retrieved after registering your app
$oauth = new OAuth("abcd123456", "efgh987654");
$oauth->setToken("abcd1234-efgh987-9988", "9876abcd-123asdf-1122");
$params = array();
$headers = array();
$method = OAUTH_HTTP_METHOD_GET;
// Specify LinkedIn API endpoint to retrieve your own profile
$url = "http://api.linkedin.com/v1/people/~";
// By default, the LinkedIn API responses are in XML format. If you prefer JSON, simply specify the format in your call
// $url = "http://api.linkedin.com/v1/people/~?format=json";
// Make call to LinkedIn to retrieve your own profile
$oauth->fetch($url, $params, $method, $headers);
echo $oauth->getLastResponse();
键被替换为 LikedIn 开发人员入门指南中的键。
预先感谢您的帮助。