POST to URL from Perl Script
By: Emiley J
This sample code in perl shows how to connect and POST data to any URL from a perl script.#---------
use LWP::UserAgent;
my $ua = new LWP::UserAgent;
my $response
= $ua->post('https://www.samples.com/submit.cgi',
{ param1 => 'value1',
param2 => 'value2',
});
my $content = $response->content;
#---------
Archived Comments
1. Larryhaw
View Tutorial By: Larryhaw at 2017-07-13 03:32:04
Most Viewed Articles (in Perl ) |
Latest Articles (in Perl) |
Comment on this tutorial