|
用的国外加洲5刀一年的VPS, 上面建一个采集站,无法采集淘宝,怎么解决呢?
采集地址:
https://s.taobao.com/search?q=连衣裙
<?php
$geturl = "https://s.taobao.com/search?q=连衣裙";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $geturl);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "GET");//3.请求方式
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);//https 不验证信息
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);//https 不验证信息
curl_setopt($ch, CURLOPT_REFERER, 'www.taobao.com'); //设置 referer 来自哪个网站
curl_setopt ($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0'); //用户访问代理 User-Agent
curl_setopt($ch, CURLOPT_TIMEOUT, 20); //超时时间
$html1 = curl_exec($ch);
curl_close($ch);
echo $html1;
?>
执行后采集不到内容,其它网站正常
各位大神有什么解决方法么? |
|