Zend Http Client から Guzzle Http Client に移行しようとしています。Guzzle は機能が充実しており、ほとんどの場合使いやすいと思いますが、Cookie プラグインの使用に関しては十分に文書化されていないと思います。私の質問は、Guzzle で、サーバーに対して行う HTTP リクエストの Cookie をどのように設定するかです。
Zend Client を使用すると、次のような簡単なことを実行できます。
$client = new HttpClient($url); // Zend\Http\Client http client object instantiation
$cookies = $request->cookies->all(); // $request Symfony request object that gets all the cookies, as array name-value pairs, that are set on the end client (browser)
$client->setCookies($cookies); // we use the above client side cookies to set them on the HttpClient object and,
$client->send(); //finally make request to the server at $url that receives the cookie data
では、Guzzle でこれを行うにはどうすればよいでしょうか。http://guzzlephp.org/guide/plugins.html#cookie-session-pluginを見てきました。しかし、それは一筋縄ではいかず、理解できませんでした。誰かが助けてくれるかも??