Cleared CookieJar to avoid websites who use cookies for analytics

This commit is contained in:
Nicolas Lœuillet 2016-11-22 14:25:51 +01:00
parent 7aab0ecf2f
commit 40f3ea57fb
No known key found for this signature in database
GPG key ID: BDC1EFB5CA0145F2

View file

@ -35,6 +35,8 @@ class HttpClientFactory
*/
public function buildHttpClient()
{
// we clear the cookie to avoid websites who use cookies for analytics
$this->cookieJar->clear();
// need to set the (shared) cookie jar
$client = new Client(['handler' => new SafeCurlHandler(), 'defaults' => ['cookies' => $this->cookieJar]]);
$client->getEmitter()->attach($this->authenticatorSubscriber);