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
- PHP Guzzle post request example
- How to use a proxy with Guzzle in PHP?
- How to set Guzzle options in PHP?
- How to send multiple requests with Guzzle in PHP?
- How to make a GET request with headers with PHP Guzzle?
- PHP Guzzle usage example
- How to use PHP Guzzle to make a batch request?
- What version of PHP is required for Guzzle?
- How to make HTTP2 request with PHP Guzzle?
- How to set a user agent in PHP Guzzle?
See more codes...