bigup401 has asked for the wisdom of the Perl Monks concerning the following question:
when i try to post request to url
i get this error
SSLget()_next_proto negotiated could not be located in the dynamic link library SSLEAY32.dll
use HTTP::Request::Common qw(POST); use LWP::UserAgent; $ua = new LWP::UserAgent(keep_alive=>1); $responde = HTTP::Request->new(POST => "https://url.com"); $responde->content_type("application/x-www-form-urlencoded"); $resp = $ua->request($responde);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: SSL ERROR
by Anonymous Monk on May 05, 2015 at 14:58 UTC | |
by bigup401 (Pilgrim) on May 05, 2015 at 15:37 UTC | |
by Anonymous Monk on May 06, 2015 at 09:13 UTC | |
|
Re: SSL ERROR
by GotToBTru (Prior) on May 05, 2015 at 14:30 UTC |