我有自定义php代理类=>
class Proxy
{
private $proxy,
$header,
$timeout,
$agent;
public function __construct($proxy, $header = null, $timeout = null, $agent = null) {
$this->proxy = $proxy;
$this->header = empty($header) ? 1 : $header;
$this->timeout = empty($timeout) ? 5 : $timeout;
$this->agent = empty($agent) ? "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.8) Gecko/2009032609 Firefox/3.0.8" : $agent;
}
public function set_proxy($proxy) {
$this->proxy = $proxy;
}
public function get_page($url, $referer = "http://www.google.com/") {
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_HEADER, $this->header);
curl_setopt($ch, CURLOPT_PROXY, $this->proxy);
curl_setopt($ch, CURLOPT_HTTPPROXYTUNNEL, true);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $this->timeout);
curl_setopt($ch, CURLOPT_REFERER, $referer);
curl_setopt($ch, CURLOPT_USERAGENT, $this->agent);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 2);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$result = array();
$result['exe'] = curl_exec($ch);
$result['inf'] = curl_getinfo($ch);
$result['err'] = curl_error($ch);
curl_close($ch);
return $result;
}
}
我最初是这样的=>
$proxy = new Proxy("PROXY_IP:PROXY_PORT");
$content = $proxy->get_page($url);
直到几天前,一切都运转良好。现在我不断收到大部分与Received HTTP code 403 from proxy after CONNECT
相关的错误消息。
因为我不知道未经修改的代码如何才能停止工作 - 我不知道如何调试这个问题。
任何帮助将不胜感激。 谢谢!
编辑: 我知道403状态代码意味着什么,我只是说无论我使用什么代理,无论我尝试使用哪个代码,我都会得到403.
答案 0 :(得分:0)
了解您的状态代码:http://en.wikipedia.org/wiki/List_of_HTTP_status_codes
403
表示“禁止”。我猜你所代理的,或者来自的,决定,你不值得信赖,不能使用他们的服务。或者您访问的真实代理现在有密码。