Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
3answers
286 views

How can I make LWP::UserAgent appear to have Flash installed?

I have a Perl script that uses LWP::UserAgent to download a webpage which it then processes using regular expressions. The problem is that portions of the webpage which are regular HTML aren't being ...
4
votes
1answer
179 views

Perl: LWP::UserAgent returns always code 200 for redirected urls

I have a simple url which does a 302 temp. move to another page. I try to get to if the URL returns code 200 (for OK) to retrieve it and to stop if something else than 200 is returned. My code: my ...
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
2answers
125 views

Perl JSON::RPC::Client using LWP::Agent

I have been given requirements to not use the JSON::RPC::Client, instead use LWP to do the calls. Here is my code: Server: #!/usr/bin/perl use strict; use lib "."; use ServerLib; use ...
3
votes
1answer
292 views

Clone request headers in Vanilla Perl CGI to LWP UserAgent

I have a perl CGI application that I want to take the users request headers, and turn those around into an LWP::UserAgent get request. Basically the goal is to replicate the incoming users headers ...
2
votes
1answer
83 views

LWP::UserAgent to post XML to secure server… certificate issue

I'm using LWP::UserAgent to do a POST of XML data to a remote server. The remote URL is https, and they sent me a .crt file to install on my server. When I try to connect to their server, I get the ...
2
votes
1answer
123 views

Trying to scrape JSON data from http://www.firstgiving.com using LWP::UserAgent

As some of you may have heard, several subreddits are having a charity drive at the moment, notably r/atheism. In the interests of helping/encouraging fundraising, I've started writing a little web ...
2
votes
1answer
476 views

LWP::UserAgent HTTP Basic Authentication

I tried to run this perl5 program: #!/usr/bin/env perl use strict; ...
2
votes
1answer
128 views

How to build LWP::UserAgent form parameters dynamically?

I want to build a set of form parameters for use in an HTTP POST on the fly, but I'm not sure how to access/build the data structure LWP::UserAgent uses dynamically. The typical example code has this ...
2
votes
1answer
429 views

Parse HTTP:Response object

I am having some difficulties getting results from a form via Perl. I believe I have successfully found the form and submitted the value I want to the appropriate field, but am unsure of how to turn ...
2
votes
3answers
347 views

What is this Perl code using LWP::UserAgent doing?

i have this code : use strict; use LWP::UserAgent; use warnings; my $ua = new LWP::UserAgent(agent => 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.5) Gecko/20060719 ...
2
votes
2answers
154 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
861 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 ...
1
vote
3answers
56 views

Parsing Site with Perl LWP::UserAgent — Cookies Required

On a certain project in Perl, I've written several "parsers", which allow me to visit websites with LWP::UserAgent. However, I'm having a problem with one website: it's behaving exactly as if I had ...
1
vote
1answer
116 views

LWP read fail error

I am using LWP::UserAgent to do a simple HTTP Post and get the error below. After much searching online it seems that there was a bug some time back that was fixed. My version 6.03 should be fixed. ...
1
vote
1answer
70 views

Why does the HTML I fetch with Perl look different from what I see in browser?

I am writing a Web scraper using Perl to fetch data from the http://www.coupons.com/ The problem is that the HTML I fetch with LWP::UserAgent is different from what I see in the web browser. I am ...
1
vote
2answers
115 views

How to make a HTTP PUT request using LWP?

I'm trying to change this request to a HTTP PUT request, any idea how ? my $request = LWP::UserAgent->new; my $response = $request->get($url, "apikey", $apiKey, "requestDate", ...
1
vote
2answers
102 views

Passing Cookie Value using HTTP::Cookie in Perl

I need to login to a site, parse the HTML page and extract the value between a specific HTML tag. I am able to do this successfully on a page which doesn't require login data. I am using the ...
1
vote
3answers
145 views

LWP::UserAgent - HTTP::Request - Question

If I do this #!/usr/local/bin/perl use warnings; use 5.014; use LWP::UserAgent; my $ua = LWP::UserAgent->new(); my $res = $ua->get( 'http://www.perl.org' ); I can call HTTP::Response methods ...
1
vote
1answer
204 views

LWP::UserAgent post method not return value

Just copy this code from perl cook book 2nd ed pp. 796 it returns: 400 URL must be absolute. What's wrong with this code? #!"c:\strawberry\perl\bin\perl.exe" -w use 5.006; use strict; use ...
1
vote
1answer
141 views

Downloading with mirror() and LWP::UserAgent (Perl)

I have a question about using mirror() in LWP::UserAgent. Does it wait for the file to finish downloading before proceeding with the rest of the script? (so if I have a for loop with, say 10 urls, ...
1
vote
2answers
588 views

Downloading XML results with LWP::UserAgent in PERL

I'm hoping for some assistance with a Perl issue. I need to download an XML file that is the result of a query, parse the results, grab the next link from the XML file, download & repeat. I ...
1
vote
2answers
178 views

How can I fetch the same URL with different query string with Perl's LWP::UserAgent?

I looked up articles about using LWP however I am still lost! On this site we find a list of many schools; see the overview-page and follow some of the links and get some result pages: I want to ...
1
vote
1answer
752 views

Is LWP::UserAgent not thread-safe?

I'm running 40-or-so threads with the following subroutine: my $app = shift; my $ua = LWP::UserAgent->new(); $ua->timeout(5); my $response = $ua->get($$app{'watch_url'}); my $new_md5; if ...
0
votes
1answer
40 views

Make timeout work for LWP::UserAgent HTTPS

Relevance: It is annoying to see your HTTPS client block indefinitely because the connection endpoint is unreliable. This experiment is easy to set up and replay at home. You just need two things, a ...
0
votes
1answer
94 views

LWP::UserAgent for XML POST to HTTPS server not working

OK... let's see if this is any clearer. I'm doing a POST of an XML doc via LWP::UserAgent to a remote third-party server. They previously sent me their .crt files, which I installed on my server, ...
0
votes
1answer
60 views

Using Perl LWP::UserAgent with XML that requires Usernames and Passwords to connect

OK... I'm trying to post an XML page to a strategic partner's site for them to do some calculations and return me a response code, again via XML. I'm using garden-variety PERL, and was trying to use ...
0
votes
0answers
82 views

Perl LWP::UserAgent get no answer

I'm sending a POST request to HTTP server and I got no answer. Code is my $req = HTTP::Request->new(POST => $url); $req->content_type('application/html'); $req->content($text); ...
0
votes
1answer
84 views

Can I use Perl LWP::UserAgent to scrape HTML and rendered JavaScript source?

Is it possible to use Perl LWP::UserAgent to scrape HTML and rendered JavaScript source?
0
votes
2answers
78 views

What is my problem filling forms with LWP and HTTP::Request::Form?

I'm new to Perl, currently writing a Perl script to automatically fill web forms and submit them using LWP. The website URL is ***/something.cgi and in that document there is a form I need to fill, ...
0
votes
2answers
251 views

How to make LWP to just continue instead of terminating when timeout happens?

read timeout at /usr/lib/perl5/site_perl/5.8.8/LWP/Protocol/http.pm line 426. at /usr/lib/perl5/site_perl/5.8.8/LWP/UserAgent.pm line 844 Anyone knows?
0
votes
2answers
79 views

Having problem setting parameters for LWP::UserAgent

my %parameters = ( key => 'value' ); my $response = $ua->get('http://example.com/i', %parameters); I'm trying to get content of ...
0
votes
3answers
187 views

How to force ISO-8859-1 encoding for form data using LWP::UserAgent?

It seems that LWP::UserAgent always encodes form data as UTF-8, even if explicitely encode it as ISO-8859-1 as follows: use Encode; use LWP::UserAgent; use utf8; my $ua = LWP::UserAgent->new; ...
0
votes
0answers
137 views

Opening folders on HTML page with perl and www::mechanize

I am trying to download all files from a webpage using perl. The problem is that the downloads are 'hidden' behind folders that open when you click the little "plus" symbol. I can go through one by ...
0
votes
3answers
359 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
3answers
285 views

Perl Question with UserAgent Get Website on Loop

I'm able to grab the first image fine, but then the content seems to be looping inside itself. Not sure what I'm doing wrong. #!/usr/bin/perl use LWP::Simple; use LWP::UserAgent; my $ua = ...
0
votes
4answers
219 views

Efficient Way To Check 10,000s of Blog Feeds in Perl

We have 10,000s of blogs we want to check multiple times a day for new posts. I'd love some ideas with example code on the most efficient way to do this using Perl. Currently we are just using ...
0
votes
2answers
203 views

How can I get the body of an HTTP response using LWP::UserAgent in Perl?

I find that the return from LWP::UserAgent->request() contains both the header and body of a HTTP response. I just need the body of the response to do some parsing, so how can I do?
0
votes
2answers
400 views

making LWP Useragent faster

I need to perform a large number of HTTP post requests, and ignore the response. I am currently doing this using LWP::UserAgent. It seems to run somewhat slow though I am not sure if it is waiting for ...
0
votes
3answers
853 views

Why don't I get a defined value from LWP::UserAgent->new()?

I get this error while using cookie_jar method: Can't call method cookie_jar on an undefined value Here is my code: my $cookie_jar= new HTTP::Cookies; my $ua=new LWP::UserAgent; my %cookies= ...
-1
votes
1answer
441 views

How can I use Perl's LWP::UserAgent to fetch the same URL with different query strings?

I have a running LWP::UserAgent that should be applied on following URL: http://dms-schule.bildung.hessen.de/suchen/suche_schul_db.html?show_school=5503 This runs with many many similar targets see ...
-3
votes
1answer
161 views

Loop in Perl - with LWP::UserAgent

Here the code that has needs to be build in loop - to make USER-Agent to iterate over a bunch of targets. for my $i (1..10000) { my $request = HTTP::Request->new(GET => ...