Tagged Questions
The lwp tag has no wiki summary.
11
votes
6answers
12k views
How can I get LWP to validate SSL server certificates?
How can I get LWP to verify that the certificate of the server I'm connecting to is signed by a trusted authority and issued to the correct host? As far as I can tell, it doesn't even check that the ...
7
votes
2answers
858 views
How do I enable IPv6 support in LWP?
The following code ...
my $user_agent = LWP::UserAgent->new;
my $request = HTTP::Request->new(GET => $url);
my $response = $user_agent->request($request);
if ($response->is_success) {
...
7
votes
6answers
2k views
How can I make LWP::UserAgent look like another browser?
This is my first post on SO, so be gentle. I'm not even sure if this belongs here, but here goes.
I want to access some information on one of my personal accounts. The website is poorly written and ...
6
votes
3answers
1k views
Compressing HTTP request with LWP, Apache, and mod_deflate
I have a client/server system that performs communication using XML transferred using HTTP requests and responses with the client using Perl's LWP and the server running Perl's CGI.pm through Apache. ...
5
votes
1answer
3k views
How can I accept gzip-compressed content using LWP::UserAgent?
I am fetching some pages over the Web using Perl's LWP::UserAgent and would like to be as polite as possible. By default, LWP::UserAgent does not seamlessly handle compressed content via gzip. Is ...
5
votes
3answers
1k views
How do I use Perl's LWP to log in to a web application?
I would like to write a script to login to a web application and then move to other parts
of the application:
use HTTP::Request::Common qw(POST);
use LWP::UserAgent;
use Data::Dumper;
$ua = ...
5
votes
3answers
7k views
True timeout on LWP::UserAgent request method
I am trying to implement a request to an unreliable server. The request is a nice to have, but not 100% required for my perl script to successfully complete. The problem is that the server will ...
5
votes
4answers
2k views
Why can't I fetch wikipedia pages with LWP::Simple?
I'm trying to fetch Wikipedia pages using LWP::Simple, but they're not coming back. This code:
#!/usr/bin/perl
use strict;
use LWP::Simple;
print get("http://en.wikipedia.org/wiki/Stack_overflow");
...
4
votes
1answer
203 views
How do I force LWP to use Crypt::SSLeay for HTTPS requests?
My symptom is that I cannot use a proxy with HTTPS requests with LWP. This seems to be a common problem, and the hints on Google and even here all suggest a work-around for setting the HTTPS_PROXY ...
4
votes
1answer
286 views
Perl equivalent of PHP's get_file_contents()?
The following PHP code does exactly what I want to do. The problem is I need to re-create it in Perl and I've been playing around with the open() and sysopen() Perl functions but can't do it. Does ...
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:
...
4
votes
2answers
347 views
How can I get the ultimate URL without fetching the pages using Perl and LWP?
I'm doing some web scraping using Perl's LWP. I need to process a set of URLs, some of which may redirect (1 or more times).
How can I get ultimate URL with all redirects resolved, using HEAD method?
...
4
votes
2answers
3k views
Why don't my LWP::UserAgent credentials work?
I'm trying to access a protected file. Server is using digest authentication - which I can see from the printed out response.
Here is the sample code:
use LWP;
use strict;
my $url = ...
3
votes
1answer
152 views
Windows / Perl / Net::SSLeay / OpenSSL: What locations are CA certificates loaded from?
Here's a program that does an HTTPS request, with some code at the start that I'm going to explain below:
use 5.012;
use LWP::UserAgent;
use HTTP::Request::Common;
use Net::SSLeay;
BEGIN {
...
3
votes
2answers
228 views
set the download speed with LWP - Perl
I am developing an application which download files from internet; the files are mainly in ftp servers, I am using LWP::Simple and the getstore function to retrieve the files. But I would like to ...
3
votes
2answers
304 views
Querying a website with Perl LWP::Simple to Process Online Prices
In my free time, I've been trying to improve my perl abilities by working on a script that uses LWP::Simple to poll one specific website's product pages to check the prices of products (I'm somewhat ...
3
votes
2answers
2k views
How do I send POST data with LWP?
I want to make a program that communicates with http://www.md5crack.com/crackmd5.php. My goal is to send the site a hash (md5) and hopefully the site will be able to crack it. After, I would like to ...
3
votes
1answer
291 views
Using Different Outbound IPs in Perl
We have a few different websites running on the same server that all access 1 particular web service with each having their own unique API key. Unfortunately the web service has a daily limit based on ...
3
votes
1answer
316 views
Inspecting SSL cert returned via LWP request
I'm requesting a web page using LWP in perl, and I'd like to be able to access the SSL certificate that the web server presents (I'm looking for an expiration date in the cert, among other things). ...
3
votes
4answers
1k views
Why does Perl's LWP gives me a different encoding than the original website?
Lets say i have this code:
use strict;
use LWP qw ( get );
my $content = get ( "http://www.msn.co.il" );
print STDERR $content;
The error log shows something like ...
3
votes
2answers
863 views
How can a Perl web crawler follow an ASP.NET postback?
I'm building a webcrawler in Perl/LWP. How can the webcrawler follow a link in a ASP.NET grid like this:
<a id="ctl00_MainContent_listResult_Top_LnkNextPage" ...
3
votes
2answers
3k views
Why does my image download with Perl's LWP give me the wrong-sized file?
I am trying to get an image from an HTTP server using Perl.
I have the full URL of the file and am attempting to use
my $data = LWP::Simple::get $params{URL};
my $filename = "image.jpg";
open (FH, ...
3
votes
2answers
923 views
Transparently Handling GZip Encoded content with WWW::Mechanize
I am using WWW::Mechanize and currently handling HTTP responses with the 'Content-Encoding: gzip' header in my code by first checking the response headers and then using IO::Uncompress::Gunzip to get ...
3
votes
1answer
2k views
Can I force LWP::UserAgent to accept an expired SSL certificate?
I would like to know whether it is possible to force LWP::UserAgent to accept an expired SSL certificate for a single, well-known server. The issue is slightly complicated by the Squid proxy in ...
3
votes
4answers
2k views
How can I extract XML of a website and save in a file using Perl's LWP?
How can I extract information from a website (http://tv.yahoo.com/listings) and then create an XML file out of it? I want to save it so to parse later and display information using JavaScrit?
I am ...
2
votes
0answers
53 views
LWP::Simple getstore does not work in Windows
As a part of my Perl script I have the following simple command which is supposed to download a $url and store its contents to a file $file:
getstore("$url", "$file");
This works perfectly fine ...
2
votes
1answer
269 views
LWP::UserAgent HTTP Basic Authentication
I tried to run this perl5 program:
#!/usr/bin/env perl
use strict;
...
2
votes
1answer
118 views
How do I crawl through a welcome page with Perl LWP?
I'm trying to crawl this page using Perl LWP:
http://livingsocial.com/cities/86/deals/138811-hour-long-photo-session-cd-and-more
I had code that used to be able to handle living social, but it seems ...
2
votes
2answers
142 views
lwp-request in shell: how to make POST request with body?
I use simple shell script to test some http server that process POST requests.
Usually it looks like:
echo "param1=value1¶m2=value2" | POST localhost/service
But now I want to pass also ...
2
votes
2answers
337 views
Loggin into website with LWP and Perl
Somewhat inexperienced programmer here trying to write a program to log into my courses site and download all the content (lectures homeworks etc). Obviously it is a password protected site so I have ...
2
votes
1answer
263 views
Perl post request to send zip file as base64?
I have a Perl script trying to send a zip file like so with LWP UserAgent module
my $req = POST $url, Content_Type => 'form-data',
Content => [
submit => 1,
upfile ...
2
votes
3answers
137 views
LWP::Simple runs very fine: how to store 6000 ++ records in a file and do some cleanup?
good evening dear community!
i want to process multiple webpages, kind of like a web spider/crawler might. I have some bits - but now i need to have some improved spider-logic. See the target-url ...
2
votes
1answer
193 views
LWP, HTML::TableExtract and the output with Text::CSV - how to add attributes here?
I have a little parser that parses a site - with 6150 records. But I need to have this in a CSV-format.
First of all see here the target site: ...
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 ...
2
votes
2answers
611 views
How to check if downloaded file using getstore() function is not complete/corrupted?
I wrote a quick script to download files using LWP::Simple library and its getstore() function. It is working rather well, but occasionally downloaded file is not complete. I do not know what is ...
2
votes
2answers
144 views
How do I process the response as a file without using the :content_file option?
Example code:
my $ua = LWP::UserAgent->new;
my $response = $ua->get('http://example.com/file.zip');
if ($response->is_success) {
# get the filehandle for $response->content
# ...
2
votes
2answers
832 views
Suppressing “Day too big” warning in Perl LWP::UserAgent
I have a fairly simple perl script with uses the LWP::UserAgent module to follow URLs through redirection to find the final destination URL which it then stores in our MySQL database. The problem is ...
2
votes
2answers
572 views
How can I determine the download speed and amount from LWP::Simple's getstore()?
When using the perl module LWP::Simple, is there a simple way to determine the speed and amount downloaded by a single getstore() invocation? This would be useful for observing the status of large ...
1
vote
1answer
134 views
Perl LWP does not work
I'm using Padre as my IDE with Strawberry Perl on Windows 7 Pro.
I'm trying to create a perl script that goes to a text file on a website, and then reads/copies the text file.
But I can't get LWP to ...
1
vote
2answers
90 views
Perl script to ONLY download certain URLs (https://…)
following is working: but now I am trying to download a file from a website which needs authentication (and perhaps save a cookie, which expires in 24 hrs) to access content.
how to provide this ...
1
vote
2answers
77 views
Why is the head command that comes with Perl's LWP::Simple only working when I invoke it on the command line?
I've got a simple perl subroutine that checks to see if google is still hosting a copy of jquery 1.6 before deciding whether to print a script linking to it or to our locally hosted copy.
This is a ...
1
vote
1answer
116 views
How do I create a gzip compressed HTTP::Response?
I need to create an HTTP::Response with compressed data. How do I go about making the content gzipped? Do I just add the appropriate headers and compress it myself using Compress::Zlib? Or does any of ...
1
vote
1answer
141 views
So LWP::UserAgent can automatically detect the charset?
our $ua = LWP::UserAgent->new;
my $response = $ua->get($url);
if($response->is_success) {
my $perl_hash_or_arrayref = decode_json(encode("UTF-8", $response->decoded_content));
...
1
vote
2answers
58 views
Managing cookies in Perl
I'm working on a Perl script that has to retrieve a file from a server. The server requires authentication that is handled internally by a different server. What I need to do to retrieve the file, is ...
1
vote
1answer
3k views
failed connect or “certificate verify failed” on LWP HTTPS GET
I posted this problem on Perl Monks yesterday but it worked for everyone who tried it (see http://www.perlmonks.org/?node_id=909968). However, I was using a different URL hoping to simplify the ...
1
vote
2answers
179 views
Testing for redirects in Perl
I was hoping to check for webpage redirects using Perl. I've tried using LWP but it only catches 503 redirects and not htaccess redirects or Javascript redirects. Any help would be greatly ...
1
vote
3answers
143 views
PHP Simple HTML DOM or Python-BSoup: which one is the easier approach?
i am currently working on a approach to parse a site that contains datas on Foundations in Europe.
http://www.foundationfinder.ch/ which has a dataset of 790 foundations. All the data are free to use ...
1
vote
3answers
480 views
Open URL in Linux using Perl (or any language)?
I am new to Perl scripting. I wanted to parse a text file, encode the parsed text and attach in URL. Please point me to right resources if you know any. This is my major problem.
Now I try to get a ...
1
vote
2answers
2k views
AWS SES certificate verify failed
I have set up SES successfully on one AWS instance. Now I am trying to use it on a second (not cloned) instance and when I run any of the SES scripts, I get an error:
ses-get-stats.pl -k ...
1
vote
4answers
237 views
Why can I login through this form with a browser, but not LWP?
I was trying to login into a website which uses this form with three inputs to authenticate.
<form action="/login.html" method="post">
<div class="loginlabel1 aright">ID / Email: ...