我试图使用php代码点击代理网址上的网址网址。我从谷歌那里得到它并试图使用它但是当我运行这段代码时我得到了
504网关超时服务器没有及时响应。
我无法找出这个错误背后的真正原因我要为此做些什么..这是我正在使用的代码
<?php
$curl = curl_init();
$timeout = 3000;
$proxies = file("proxy.txt");
$r="https://abcdefgh.com";
// Not more than 2 at a time
for($x=0;$x<25; $x++){
//setting time limit to zero will ensure the script doesn't get timed out
set_time_limit(0);
//now we will separate proxy address from the port
//$PROXY_URL=$proxies[$getrand[$x]];
echo $proxies[$x];
curl_setopt($curl, CURLOPT_URL,$r);
curl_setopt($curl , CURLOPT_PROXY , $proxies[$x]);
curl_setopt($curl, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.0.5) Gecko/2008120122 Firefox/3.0.5");
curl_setopt($curl, CURLOPT_CONNECTTIMEOUT, $timeout);
curl_setopt($curl, CURLOPT_REFERER, "http://google.com/");
$text = curl_exec($curl);
echo "Hit Generated:";
echo $x;
}
?>
答案 0 :(得分:0)
您需要定义代理的类型。对我来说,它看起来你使用HTTP代理。