ユーザーが API 経由でログインできるようにするサイトの API を作成しています。Guzzle を使用していますが、Guzzle で Cookies プラグインを使用するにはどうすればよいですか? cURL では、Cookie ファイルを使用して、これをリクエストと共に渡すことができます。しかし、Guzzle ドキュメントの例はわかりにくいようです。
use Guzzle\Http\Client;
use Guzzle\Plugin\Cookie\CookiePlugin;
use Guzzle\Plugin\Cookie\CookieJar\ArrayCookieJar;
$cookiePlugin = new CookiePlugin(new ArrayCookieJar());
// Add the cookie plugin to a client
$client = new Client('http://www.test.com/');
$client->addSubscriber($cookiePlugin);
// Send the request with no cookies and parse the returned cookies
$client->get('http://www.yahoo.com/')->send();
// Send the request again, noticing that cookies are being sent
$request = $client->get('http://www.yahoo.com/');
$request->send();
echo $request;
3つのリクエストを行っているようです。test.com にリクエストを送信し、次に yahoo.com に 2 回リクエストを送信する理由がわかりません。1 件のリクエストを作成できないのはなぜですか?