我知道如果你想使用cookie,你必须编写代码:
$ua = LWP::UserAgent->new();
$ua->cookie_jar(HTTP::Cookies->new());
然后你可以get()、post()等等。
但是如果我只是将 cookie 字符串放入 HTTP HEADER 和 get() 中,我无法得到正确的响应。作为:
$ua = LWP::UserAgent->new();
$ua->get($url, 'Cookie' => $cookie_string);