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