- or download this
use LWP::UserAgent;
use HTTP::Request::Common qw(POST);
...
BEGIN { $LWP::DebugFile::outname = 'c:/ua_debug.txt' }
use LWP::DebugFile qw(+);
- or download this
#create cookies jar to hold the cookies for this user agent
my $cookie_jar = HTTP::Cookies->new(
...
autosave => 1,
);
- or download this
#create cookies jar to hold the cookies for this user agent
my $cookie_jar = HTTP::Cookies::Microsoft->new(
...
}
}