Help for this page

Select Code to Download


  1. or download this
    my $res = $ua->request(POST $url,
                               content-type  => 'form-data',
                               content       => $query,
                               authorization => "Basic " . AUTHORISATION,
    );
    
  2. or download this
    my $res = $ua->request(POST $url,
                [    
    ...
                    "content"       => $query,
                    "authorization" => "Basic " . AUTHORISATION
                ]);