Help for this page

Select Code to Download


  1. or download this
    use strict; use warnings;
    use HTTP::Tiny;
    ...
    my $response = $ua->get( $url . '/?' . $params );
    
    print $response->{'status'} . "\n";
    
  2. or download this
    use strict; use warnings;
    
    ...
    my $response = $ua->post_form( $url, $data );
    
    print $response->{'status'} . "\n";