我真的陷入了困境,需要专家的帮助。让我解释一下我正在努力实现的目标和设置。我有一个脚本,它使用 Zend_Http_Client 在 https 表单上发布。在服务器设置上,我运行了 tor & privoxy。一切正常,但现在我需要通过在同一台服务器上运行多个 tor 和 privoxy 实例来使代码更具可扩展性。
因此,我将 Zend 的适配器从Zend_Http_Client_Adapter_Curl转移到Zend_Http_Client_Adapter_Proxy。但是在更改适配器后,我遇到了一个奇怪的错误,上面写着 -从客户端收到 400 Invalid header,当我转储 Zend 客户端的对象时,我看到以下内容 -
MyWebClientResponse::__set_state(array(
'json' => NULL,
'version' => '1.1',
'code' => 400,
'message' => 'Invalid header received from client',
'headers' =>
array (
'Proxy-agent' => 'Privoxy 3.0.19',
'Content-type' => 'text/plain',
'Connection' => 'close',
),
'body' => 'Invalid header received from client.
',
))
我不明白我做错了什么。代码是在 Yii 框架中完成的,所以很难分享所有的类和模型,但我分享的是代码的主要部分,它们负责这个 -
$client = MyWebClient::factory();
$adapter = $client->getAdapter();
$adapter->setConfig(array('timeout' => 120,
'proxy_host' => 'localhost',
'proxy_port' => 8124
));
$client->setAdapter($adapter);
$client->setCookieJar(true);
$client->setParameterPost(array(
'name' => 'firstname',
'password' => 'password,
'login' => 'home'
));
$response = $client->setUri('https://www.domain.com/post.php')->requestApi('POST', false);
这是 MyWebClient 类的构造函数,以防万一它需要,所有其他方法都是标准的。
static public function factory($new = false)
{
if (!isset(self::$client))
{
self::$client = new MyWebClient();
self::$client->setConfig(array(
'adapter' => 'Zend_Http_Client_Adapter_Proxy',
// 'proxy_host' => 'localhost',
// 'proxy_port' => 8118,
'persistent' => false,
'timeout' => 120
));
}
return self::$client;
}
标头正在 requestAPI 方法中设置,代码段是 -
$headers = array(
'X-PHX' => 'true',
'X-Requested-With' => 'XMLHttpRequest',
'Referer' => 'https://domain.com/index.html',
'User-Agent' => self::getRandomUserAgent()
);
$this->setHeaders($headers);
我非常感谢在这方面的帮助。认为它是 privoxy,它不会让请求离开服务器。
萨钦