Help for this page

Select Code to Download


  1. or download this
    use HTTP::Tiny;
    use LWP::Simple;
    ...
    $response = HTTP::Tiny->new->get('...')
    ...
    $response = get('...');
    
  2. or download this
    use HTTP::Tiny;
    my $http = HTTP::Tiny->new;
    my $response = $http->get('...');
    ...
    $response = $http->get('...');