in reply to Re: HTTPS with lwp problem.
in thread HTTPS with lwp problem.
this my first time around here, can you please tell me what to post? the request ??
my $user_agent = LWP::UserAgent->new; $user_agent->protocols_allowed(['http','https']); push @{$user_agent->requests_redirectable}, 'POST'; $user_agent->cookie_jar(HTTP::Cookies->new()); my $urlObj = URI->new($url); $reqObj = new HTTP::Request($method,$urlObj,$hdrObj,$cgi_param); $resObj = $user_agent->request($reqObj);
This is the request. Thankyou
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: HTTPS with lwp problem.
by ikegami (Patriarch) on Nov 03, 2009 at 08:12 UTC |