Use temporary files for the URLResolver CookieJar

This commit is contained in:
Philipp Holzer 2021-08-25 20:39:33 +02:00
parent cf0b7b709b
commit 749f3e158b
No known key found for this signature in database
GPG Key ID: 9A28B7D4FF5667BD
1 changed files with 1 additions and 1 deletions

View File

@ -103,7 +103,7 @@ class HTTPClientFactory extends BaseFactory
$resolver->setMaxResponseDataSize(1000000);
// Designate a temporary file that will store cookies during the session.
// Some websites test the browser for cookie support, so this enhances results.
$resolver->setCookieJar(get_temppath() . '/url_resolver.cookie', true);
$resolver->setCookieJar(tempnam(get_temppath(), 'resolver-cookie-'));
return new HTTPClient($logger, $this->profiler, $guzzle, $resolver);
}