Help for this page

Select Code to Download


  1. or download this
    my $ua  = LWP::UserAgent->new;
    my $jar = $ua->cookie_jar({ 
    ...
    
    #edit jar
    $jar->clear_temporary_cookies
    
  2. or download this
    my $jar = MyCookieJar->new({ 
      file => $path_to_cookies, %options
    ...
    
    # or later, via cookie_jar
    $ua->cookie_jar( $jar );