我目前正在尝试通过此链接的 curl 请求获取一些数据。这样做会返回以下内容:
“HTTP/2 403 服务器:AkamaiGHost mime-version:1.0 content-type:text/html content-length:293 expires:Sun,2019 年 8 月 11 日 08:34:24 GMT 日期:Sun,2019 年 8 月 11 日 08:34:24格林威治标准时间
拒绝访问
您无权访问“ http://www.g2a.com/lucene/search/filter?” 在这台服务器上。
参考 #18.9d0c1502.1565512464.22e1446"
我知道 curl 工作正常,因为它适用于其他请求,只是这个请求被拒绝。此外,使用浏览器打开链接不会显示“拒绝访问”错误,但实际上会返回我需要的数据。
这是从代码复制粘贴的 curl 请求:
try{
// initiate curl (used to request data from other webpages)
$ch = curl_init();
// will return the response, if false it prints the response
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
// set the url, eliminates headers from response
curl_setopt($ch, CURLOPT_URL, $g2a);
curl_setopt($ch, CURLOPT_HEADER, true);
// execute
$result=curl_exec($ch);
//if some error occurs
if (!$result)
throw new Exception(curl_error($ch), curl_errno($ch));
// Closing
curl_close($ch);
} catch(Exception $e) {
trigger_error(sprintf('Curl failed with error #%d: %s', $e->getCode(), $e->getMessage()), E_USER_ERROR);
}
var_dump($result);
//converts json to associative array
$result=json_decode($result, true);
关于可能是什么问题的任何想法?
波斯汪
Helenr