导读:
curl请求时添加请求头信息可以模拟真人操作,不容易被当成是爬虫机器人(采集),从而可以绕过Incapsula等安全验证机制。
1、首先使用浏览器(示例使用的是火狐浏览器)访问接口网址,使用F12调试,查看请求头信息,如下:
2、实现代码:
<"" ); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true ); curl_setopt($ch, CURLOPT_AUTOREFERER, true ); curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout ); curl_setopt($ch, CURLOPT_TIMEOUT, $timeout ); curl_setopt($ch, CURLOPT_MAXREDIRS, 10 ); curl_setopt($ch, CURLOPT_USERAGENT, $useragent); $content = curl_exec($ch); if(curl_errno($ch)) { echo 'Error:' . curl_error($ch); } else { return $content; } curl_close($ch); } //添加请求头 function FormatHeader($url) { // 解析url $temp = parse_url($url); $query = isset($temp['query']) "POST {$path}", "Host: {$temp['host']}", "Referer: http://{$temp['host']}/", "Content-Type: text/xml; charset=utf-8", 'Accept: application/json, text/javascript, */*; q=0.01', 'Accept-Encoding:gzip, deflate, br', 'Accept-Language:zh-CN,zh;q=0.8,zh-TW;q=0.7,zh-HK;q=0.5,en-US;q=0.3,en;q=0.2', 'Connection:keep-alive', 'User-Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:83.0) Gecko/20100101 Firefox/83.0', 'X-Requested-With: XMLHttpRequest', ); return $header; } "htmlcode"><"http://www.xxx.com/getdata.php".lcg_value(); //访问网址 $html = fetch_url($url);
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件!
如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
狼山资源网 Copyright www.pvsay.com
暂无“php的curl携带header请求头信息实现http访问的方法”评论...