in reply to Pass cookies from one CGI to another
Then set this cookie_jar to be used in the user agent.use HTTP::Cookies; $cookie_jar = HTTP::Cookies->new;
You can extract and add cookie like:$ua->cookie_jar([$cookie_jar])
Hope that helps..$cookie_jar->extract_cookies($response); $cookie_jar->set_cookie($version, $key, $val, $path, $domain, $port, $ +path_spec, $secure, $maxage, $discard, \%rest)
|
|---|