php-guzzleHow to use cookies with Guzzle in PHP?
Cookies can be used with Guzzle in PHP by setting the Cookie header in the request.
$client = new GuzzleHttp\Client();
$response = $client->request('GET', 'http://httpbin.org/cookies', [
'headers' => [
'Cookie' => 'foo=bar; bar=baz'
]
]);
The output of the above code will be a response object containing the cookies sent in the request.
Code explanation
$client = new GuzzleHttp\Client();- This creates a new Guzzle client object.'headers' => [ 'Cookie' => 'foo=bar; bar=baz' ]- This sets theCookieheader in the request with the cookiesfoo=barandbar=baz.$response = $client->request('GET', 'http://httpbin.org/cookies', [ ... ])- This sends the request to the specified URL with theCookieheader set.
Helpful links
More of Php Guzzle
- How to stream with PHP Guzzle?
- How to install PHP Guzzle without Composer?
- How to set a user agent in PHP Guzzle?
- How to add an SSL certificate to a request with PHP Guzzle?
- How to handle a RequestException with PHP Guzzle?
- How to convert a response to an array with PHP Guzzle?
- How to set a timeout for a request with PHP Guzzle?
- How to use Promises with PHP Guzzle (with an example)?
- How to convert a Guzzle request to a cURL request in PHP?
- How to use PHP Guzzle to make a batch request?
See more codes...