在Guzzle中设置代理

时间:2015-09-01 06:26:33

标签: php curl proxy guzzle

我在guzzle中设置代理有问题,显示空白页面,而卷曲一切都很完美。我在guzzle和curl中使用的代码如下。 这段代码有什么问题: Guzzle:

if (self.selectedCellIndexs.containsObject(indexPath)) {
    return selectedHeight 
}
return notSelectedHeight

和CURL的代码:

use GuzzleHttp\Client;
use GuzzleHttp\Exception\RequestException;

require_once "vendor/autoload.php";

try {
  $client = new Client();
  $request = new \GuzzleHttp\Psr7\Request('GET', 'http://httpbin.org');
  $response = $client->send($request, [
      'timeout'  => 30,
      'curl'  => [
          'CURLOPT_PROXY' => '*.*.*.*',
          'CURLOPT_PROXYPORT' => *,
          'CURLOPT_PROXYUSERPWD' => '*:*',
      ],

  ]);
  echo '</pre>';
  echo($response->getBody());
  exit;
} catch (RequestException $e) {
  echo $e->getRequest();
  if ($e->hasResponse()) {
      echo $e->getResponse();
  }
}

感谢。

6 个答案:

答案 0 :(得分:7)

至于 Guzzle 6

Guzzle docs提供有关为单个请求设置代理的信息

$client->request('GET', '/', ['proxy' => 'tcp://localhost:8125']);

但是,您可以在初始化客户端时将其设置为所有请求

    $client = new Client([
        'base_uri' => 'http://doma.in/',
        'timeout' => 10.0,
        'cookie' => true,
        'proxy' => 'tcp://12.34.56.78:3128',
    ]);

UPD。我不知道为什么,但我面临一种奇怪的行为。一个使用guzzle版本6.2.2的服务器与上面的配置相同,而另一个具有相同版本的服务器从代理接收400 Bad Request HTTP错误。它通过另一个配置结构(在docs for guzzle 3中找到)

来解决
$client = new Client([
    'base_uri' => 'http://doma.in/',
    'timeout' => 10.0,
    'cookie' => true,
    'request.options' => [
        'proxy' => 'tcp://12.34.56.78:3128',
    ],
]);

答案 1 :(得分:2)

psr-7的程序可能有所不同,但如果您正在使用 实例化客户端的标准方法,

path\to\project\vendor\guzzlehttp\guzzle\src\Client.php, lines 164-170包含读取环境变量的代码,以查看当前机器上是否设置了HTTP_PROXY和HTTPS_PROXY,如果是,Guzzle将使用这些值。

此外,我必须设置我的HTTPS_PROXY = http://ip:port(而不是https),因为我们的工作区代理似乎通过http协议处理https和http请求。

此配置的优点是您不必在源代码中更改代理设置。

答案 2 :(得分:2)

现在有同样的问题,我需要做的就是使用curl数组键作为常量而不是字符串..

$response = $client->send($request, [
              'timeout'  => 30,
              'curl'  => [
                  CURLOPT_PROXY => '*.*.*.*',
                  CURLOPT_PROXYPORT => *,
                  CURLOPT_PROXYUSERPWD => '*:*',
             ],
         ]);

请参阅CURL选项键,它们不再是字符串。

答案 3 :(得分:1)

$response = \Drupal::httpClient()->post($settings['base_url'] . 'api/search/', [
    'verify' => true,
    'body' => $post_data,
      'headers' => [
        'Content-type' => 'application/json',
      ],
    'curl' => [
        CURLOPT_SSLVERSION => CURL_SSLVERSION_TLSv1_2, 
        CURLOPT_PROXY => 'proxyip:58080'],
    ]
  )->getBody()->getContents();

在Guzzle和SSL中设置代理/ https是完美的。

答案 4 :(得分:1)

对于Guzzle6,我认为最好的方法是实现一个用于设置代理的中间件。

来自Guzzle6文档:

我们可以设置代理如下:

 
use Psr\Http\Message\RequestInterface;
use GuzzleHttp\HandlerStack;
use GuzzleHttp\Handler\CurlHandler;
use GuzzleHttp\Client;
use GuzzleHttp\Middleware;
use Util\Api;
function add_proxy_callback($proxy_callback) {
    return function (callable $handler) use ($proxy_callback) {
        return function (RequestInterface $request,$options) use ($handler,$proxy_callback) {
            $ip = $proxy_callback();
            $options['proxy'] = $ip;
            return $handler($request,$options);
        };
    };
} 
$stack = new HandlerStack();
$stack->setHandler(new CurlHandler());
$stack->push(add_proxy_callback(function() {
    return Api::getIp(); //function return a ip 
}));
$client = new Client(['handler'=>$stack]);
$response = $client->request('GET','http://httpbin.org/ip');
var_dump((string)$response->getBody());

答案 5 :(得分:0)

对于代理,如果您具有用户名和密码,则可以使用:

$client = new GuzzleHttp\Client();

$res = $client->request("POST", "https://endpoint.com", [
    "proxy" => "http://username:password@192.168.16.1:10",
]);

这与php中的guzzle一起使用。