Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    use WWW::Mechanize; ## Automate Grabbing Webpages
    ...
    $mech->dump_all(undef, 1);
    print $resp2->content;
    print "\n\n\n";
    
  2. or download this
    #!/usr/bin/perl
    use HTTP::Request::Common qw(POST);
    ...
    my $content = $resp->as_string;
    print $content;
    print "\n\n\n";
    
  3. or download this
    $req2= HTTP::Request->new(POST => 'http://10.10.10.10...
    Used ua->credentials(...
    etc.