Help for this page

Select Code to Download


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