Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    use warnings;
    ...
     ];
    $content = $ua->request($req)->as_string;
    print $content;
    
  2. or download this
    #!/usr/bin/perl
    use warnings;
    ...
    my $res = $ua->request($req);
    print $res->as_string;