$baseUrl = 'http://foo';
$config = array();
$client = new Guzzle\Http\Client($baseUrl, $config);
为 Guzzle 设置默认标头而不将其作为参数传递给每个的新方法是什么$client->post($uri, $headers)
?
有$client->setDefaultHeaders($headers)
,但已弃用。
setDefaultHeaders is deprecated. Use the request.options array to specify default request options