Tagged Questions
4
votes
1answer
4k views
perl Client-SSL-Warning: Peer certificate not verified
I am having trouble with a perl screenscraper to an HTTPS site.
In debugging, I ran the following:
print $res->headers_as_string;
and in the output, I have the following line:
...
2
votes
2answers
272 views
How can I extract non-standard HTTP headers using Perl's LWP?
I'm working with a web application that sends some non-standard HTTP headers in its response to a login request. The header in question is:
SSO_STATUS: LoginFailed
I tried to extract it with ...
1
vote
2answers
158 views
Can can I encode spaces as %20 in a POST from WWW::Mechanize?
I'm using WWW::Mechanize to do some standard website traversal, but at one point I have to construct a special POST request and send it off. All this requires session cookies.
In the POST request I'm ...
0
votes
3answers
310 views
Send a plain string request with LWP
To get a response from a certain website, I have to give one exact request string, HTTP/1.1. I tried that one with telnet, it gives me the response I want (a redirect, but I need it).
But when I try ...
0
votes
2answers
90 views
Are there any HTTP connection iterators in Perl?
I'm trying to parse results from queries over HTTP that can return up to millions of lines - where each line need to be parsed. Ideally I would love to read a line at a time from a connection and ...
0
votes
2answers
260 views
How can I access Closure JavaScript minifier using Perl's LWP::UserAgent?
I'm trying to get Code Closure to work, but unfortunately, there's always an error thrown.
Here's the code:
use LWP::UserAgent;
use HTTP::Request::Common;
use HTTP::Response;
my $name = 'test.js';
...