使用 Guzzle HTTP 客户端时如何禁用代理?

Rus*_*and 2 php proxy guzzle

我正在尝试使用 Guzzle 库调用客户端服务器上的 Web 服务 - 但服务器有代理,因此我的代码中出现 404 错误。

如果我 ssh 进入客户端服务器并尝试

wget http://www.mywebsite.com/mywebservice
Run Code Online (Sandbox Code Playgroud)

我收到一个错误

Resolving proxy.theirdomainname.com (proxy.theirdomainname.com)... xx.xx.xx.xx
Connecting to proxy.theirdomainname.com (proxy.theirdomainname.com)|xx.xx.xx.xx|:80...
failed: Connection timed out.
Run Code Online (Sandbox Code Playgroud)

但如果我使用

wget --no-proxy http://www.mywebsite.com/mywebservice
Run Code Online (Sandbox Code Playgroud)

我得到一个结果

Resolving www.mywebsite.com (www.mywebsite.com)... xx.xx.xx.xx
Connecting to www.mywebsite.com (www.mywebsite.com)|xx.xx.xx.xx|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: unspecified [text/html]
Run Code Online (Sandbox Code Playgroud)

我可以在 Guzzle 文档中看到设置代理的选项 - http://guzzle.readthedocs.org/en/latest/http-client/client.html#proxy

但是如何完全禁用代理呢?或者这将是服务器设置?

编辑:

$request = $client->get($this->url(), array('proxy' => ''))
                  ->setHeader('Accept', 'text/xml');

$response = $request->send();
var_dump($response);
Run Code Online (Sandbox Code Playgroud)

结果 :

Fatal error: Uncaught exception 'Guzzle\Http\Exception\ClientErrorResponseException'
with message 'Client error response [status code] 404 [reason phrase] Not Found [url] http://mywebsite.com'
in /vendor/guzzle/guzzle/src/Guzzle/Http/Exception/BadResponseException.php:44 
Stack trace: #0 /guzzle/guzzle/src/Guzzle/Http/Message/Request.php(145): Guzzle\Http\Exception\BadResponseException::factory(Object(Guzzle\Http\Message\Request), Object(Guzzle\Http\Message\Response)) 
#1 [internal function]: Guzzle\Http\Message\Request::onRequestError(Object(Guzzle\Common\Event))
#2 /vendor/symfony/event-dispatcher/Symfony/Component/EventDispatcher/EventDispatcher.php(164): call_user_func(Array, Object(Guzzle\Common\Event))
#3 /vendor/symfony/event-dispatcher/Symfony/Component/EventDispatcher/EventDispatcher.php(53): Symfony in /vendor/guzzle/guzzle/src/Guzzle/Http/Exception/BadResponseException.php on line 44
Run Code Online (Sandbox Code Playgroud)

Rid*_*oid 6

如果您使用的是 Guzzlehttp6 :

  • 如果您想为给定类型的协议指定不同的代理:

     $client->request('GET', 'your_url_here', [
    'proxy' => [
    'http'  => 'tcp://localhost:8125', // Use this proxy with "http"
    'https' => 'tcp://localhost:9124', // Use this proxy with "https",
    'no' => ['.mit.edu', 'foo.com']    // Don't use a proxy with these
       ]
    ]);
    
    Run Code Online (Sandbox Code Playgroud)
  • 如果您想禁用所有查询的代理:

    $client->request('GET','your_url_here',['proxy'=>'']);
    
    Run Code Online (Sandbox Code Playgroud)

    官方文档链接。