Lines Matching refs:headers

202 ## headers event has been removed
204 Removed the "headers" event. This event was only useful for changing the
205 body a response once the headers of the response were known. You can implement
208 first byte is written, you could check if the response headers match your
355 `$client->setConfig('defaults/headers/User-Agent', 'Foo/Bar ' . $client::getDefaultUserAgent())`.
417 addition of arbitrary headers.
418 - Custom headers like `GuzzleHttp\Message\Header\Link` have been removed. Most
419 of the custom headers are now handled separately in specific
421 been updated to properly handle headers that contain parameters (like the
520 `headers` is a new event that is emitted after the response headers of a
701 …zle\Service\Client::getDefaultHeaders()` as deprecated. Use `$client->getDefaultOption('headers')`.
702 …ent::setDefaultHeaders()` as deprecated. Use `$client->setDefaultOption('headers/{header_name}', '…
704 - Marked 'command.headers', 'command.response_body' and 'command.on_complete' as deprecated for Abs…
707 'command.headers' => array('Test' => '123'),
715 'headers' => array('Test' => '123'),
728 - Changed `Guzzle\Http\ClientInterface::get($uri = null, $headers = null, $body = null)` to
729 …`Guzzle\Http\ClientInterface::get($uri = null, $headers = null, $options = array())`. You can stil…
740 `$client->getConfig()->setPath('request.options/headers/{header_name}', 'value')`. or
741 `$client->getConfig()->setPath('request.options/headers', array('header_name' => 'value'))` or
742 `$client->setDefaultOption('headers/{header_name}', 'value')`. or
743 `$client->setDefaultOption('headers', array('header_name' => 'value'))`.
744 …ientInterface::getDefaultHeaders(). Use `$client->getConfig()->getPath('request.options/headers')`.
756 - Always setting X-cache headers on cached responses
771 * Mixed casing of headers are now forced to be a single consistent casing across all values for tha…
776 * Specific header implementations can be created for complex headers. When a message creates a head…
777 …HeaderFactory which can map specific headers to specific header classes. There is now a Link heade…