Here's the deal, one AngularJS app makes a post login request to my API (Laravel). Then Laravel does a request with Guzzle to another API. This API returns a cookie, which Laravel will send over to AngularJS.
Now on subsequent requests made by AngularJS, this cookie is sent, Laravel injects it on subsequent Guzzle requests.
My login method:
public function login(AuthRequest $request)
{
$credentials = $request->only('email', 'password');
$response = $this->httpClient->post('_session', [
'form_params' => [
'name' => $credentials['email'],
'password' => $credentials['password']
]
]);
return $this->respond($response->getHeader('Set-Cookie'));
}
How do I "sync" the Laravel cookie and the Guzzle cookie?
I'm using Laravel 5 and the latest Guzzle (6.0.1).
I was able to get the created cookie from the Guzzle request using the Cookie Jar