How do I set a cookie in a listener without interrupting other things and redirects?
I'm trying to set it on an InteractiveLoginEvent. I tried to set it like that:
$response = new Response();
$response->headers->setCookie(new Cookie('foo', 'bar'));
$response->send();
Cookie is set this way but after that I get blank page and it's not redirecting to the landing page after login. how do I solve this?
Try using RedirectResponse:
It will set a cookie and redirect to url you specify. Also consider injecting
Router
into your listener to generate proper url.