Help for this page

Select Code to Download


  1. or download this
    $ua->cookie_jar({ file => "$ENV{HOME}/.cookies.txt" });
    
  2. or download this
      require HTTP::Cookies;
      $ua->cookie_jar(HTTP::Cookies->new(file => "$ENV{HOME}/.cookies.txt"
    +));
    
  3. or download this
      $ua->cookie_jar({}); #this will store cookie in memory. Not in file