Looking at your original snippet, you can grab the output of your call to $ua->cookie_jar(...)
my $ua = LWP::UserAgent->new;
my $jar = $ua->cookie_jar({
file => $full_path_to_script_dir."/cookies",
hide_cookie2 => 1,
autosave => 1,
ignore_discard => 1});
#... do surfing....
#edit jar
$jar->clear_temporary_cookies
If you happen to already have a cookie_jar object or want a non-standard one, you can create a cookie_jar and then add it to your UserAgent.
Also, these tips also work for things that subclass LWP::UserAgent, like WWW::Mechanize.
my $jar = MyCookieJar->new({
file => $path_to_cookies, %options
});
# directly at new:
my $ua = LWP::UserAgent->new( cookie_jar => $jar);
# or later, via cookie_jar
$ua->cookie_jar( $jar );
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.