How can I retrieve the cookies from a Guzzle request / client, after a request has occurred?
$client = new Client([
'base_uri' => 'www.google.com',
]);
$response = $client->request('GET', '/');
How can I retrieve the cookies from a Guzzle request / client, after a request has occurred?
$client = new Client([
'base_uri' => 'www.google.com',
]);
$response = $client->request('GET', '/');
You can also get the CookieJar from the response like this:
$client = new Client([
'base_uri' => 'www.google.com',
'cookies' => true,
]);
$response = $client->request('GET', '/');
$cookieJar = $response->cookies();
$cookieArray = $cookieJar->->toArray();