PHP CURL使用代理进行POST

时间:2013-02-13 16:32:36

标签: php post curl proxy

我正在尝试使用代理列表创建一个发布到URL的脚本。该脚本似乎没有设置代理(CURLOPT_PROXY为null)工作正常,但使用代理集它似乎不起作用。有谁知道我在这里做错了什么?使用代理发布时出现的错误是:

ERROR

The requested URL could not be retrieved

Invalid Request error was encountered while trying to process the request:

POST /###/ HTTP/1.1
Host: ###
Accept: */*
Proxy-Connection: Keep-Alive
Content-Length: 368
Expect: 100-continue
Content-Type: multipart/form-data; boundary=----------------------------9b24e849cac0
Some possible problems are:

Missing or unknown request method.

Missing URL.

Missing HTTP Identifier (HTTP/1.0).

Request is too large.

Content-Length missing for POST or PUT requests.

Illegal character in hostname; underscores are not allowed.

我的代码是:

$url = 'urltopost';
$proxy = 'proxy:port';

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,$url);
curl_setopt($ch, CURLOPT_PROXY, $proxy);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_HEADER, 1);
curl_setopt($ch, CURLOPT_POST, true);

$data = array(
    'postname1' => 'value1',
    'postname2' => 'value2'
);

curl_setopt($ch, CURLOPT_POSTFIELDS, $data);

$curl_scraped_page = curl_exec($ch);
curl_close($ch);

echo $curl_scraped_page;

1 个答案:

答案 0 :(得分:2)

您缺少PROXYPORT选项...您无法使用proxy:port notation

curl_setopt($ch, CURLOPT_PROXY,             "YOUR PROXY HOST");         
curl_setopt($ch, CURLOPT_PROXYPORT,         "YOUR PROXY PORT");