Please help.
The following code is for http post.
I need to use https post. The following script kept giving me error message.
My server machine is set OK to use https.
Does libwww-perl-5.65 support https? Or I need to add some special codes.
Thanks!
start from here:
# Create a user agent object
use LWP::UserAgent;
$ua = LWP::UserAgent->new;
$ua->agent("MyApp/0.1 ");
# Create a request
my $req = HTTP::Request->new(POST =>
'http://www.perl.com/cgi-bin/BugGlimpse');
$req->content_type('application/x-www-form-urlencoded');
$req->content('match=www&errors=0');
# Pass request to the user agent and get a response back
my $res = $ua->request($req);
# Check the outcome of the response
if ($res->is_success) {
print $res->content;
} else {
print "Bad luck this time\n";
}
- Re: secure https post Wendy Tan
- Re: secure https post David Busby
