作者热门文章
- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我不知道如何在 Goutte 中设置 cookie。我正在尝试以下代码:
$client->setHeader('User-Agent', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.111 Safari/537.36');
$client->getCookieJar()->set('SRCHUID');
我附上了这个名字的 cookie 图片。我该如何设置这个 cookie?
最佳答案
Goutte 与 Guzzle 6
use GuzzleHttp\Cookie;
$cookieJar = new \GuzzleHttp\Cookie\CookieJar(true);
$cookieJar->setCookie(new \GuzzleHttp\Cookie\SetCookie([
'Domain' => "www.domain.com",
'Name' => $name,
'Value' => $value,
'Discard' => true
]));
$client = new Client();
$guzzleclient = new \GuzzleHttp\Client([
'timeout' => 900,
'verify' => false,
'cookies' => $cookieJar
]);
$client->setClient($guzzleclient);
return $client; //or do your normal client request here e.g $client->request('GET', $url);
关于php - 如何在 Goutte 中设置 cookie?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30993495/
我是一名优秀的程序员,十分优秀!