The World-Wide Web library for Perl - LWP is a set of Perl modules which provides a simple and consistent application programming interface (API) to the World-Wide Web.

learn more… | top users | synonyms

0
votes
0answers
30 views

HTTP Post and Get not working in Strawberry Perl via Browser

I am parsing JSON from Facebook and use the JSON module and LWP using Perl and Win IIS7. In strawberry Perl, I can specify a URL then parse and read data from the command line but when calling it via ...
0
votes
0answers
41 views

Use LWP::UserAgent to get different content of same page

I am trying to get (public) friends of a Facebook user by repeatedly GET the page. (Since refreshing get different friends shown on page) Here's my code: our @header = ...
1
vote
1answer
39 views

Perl REST::Client best way to get and use CSRFToken and session id through cookies

So right now I'm using REST::Client which does a perfectly good job when it comes to making GET requests and fetching JSON data. However, the API in question, when issuing a POST request, should pass ...
1
vote
1answer
23 views

Perl: Using HTTP::Request::Common to post with authentication

I tried to use HTTP::Request::Common to do a post to a URL. Unfortunately, it doesn't seem to work with authentication, and I had to switch back to plain ol' HTTP::Request. If I didn't need the ...
0
votes
0answers
9 views

Extract and replace encrypted images from LWP APK

I did extract the APK and replaced the images using 'Easy APK disassembler', but i got the images as corrupt, and when i replaced the image with one of mine (It was a LWP) the app crashed.
1
vote
2answers
66 views

Perl LWP close connection manually

New Question: I'm doing the following with my Perl script: use strict; use warnings; use LWP 5.64; my $browser = LWP::UserAgent->new(); $browser->credentials( 'localhost:8080', 'Tomcat ...
0
votes
1answer
45 views

Detect a broken link (web) in perl

I'm trying to detect if a link is broken or not, as in if it's a web address I could paste into my browser and find a web page. I've tried two methods so far that I found online and both are giving me ...
0
votes
0answers
39 views

getstore not functioning in (CGI) perl script

I created a little test script to download an image and save it to disk: #!/usr/bin/perl -wT use LWP::Simple; print "Content-type: text/plain", "\n\n"; print "TEST\n"; ...
0
votes
1answer
97 views

Perl LWP::UserAgent request does not return using http1.1 but working fine using http1.0!? Why?

I have a very simple script (on a SLES11 system) to send a http1.1 request to a server. This worked fine for a long time. Since a couple of days it stopped working. I have no idea why. After some ...
1
vote
1answer
42 views

How to replace LWP handle in SOAP::WSDL?

I have to extend an established web application which is using SOAP::WSDL to communicate with external SOAP servers. To get use of a new SOAP method I have to extend the application to handle cookies ...
3
votes
1answer
1k views

Selecting SSL_VERIFY_NONE for SSL_verify_mode

I am trying to create a client connection to an internal ssl site that does not have a certificate and needs to bypass the proxy. I am able to bypass the proxy, and I am able to connect to the site ...
-2
votes
1answer
73 views

perl LWP POST using special characters

I am struggling with posting Perl data using LWP. Here is my code $req = POST $url, [ SESSID => $sessid, csrf => $csrf, domainid => '1234567', type => 'A', default ...
0
votes
1answer
103 views

Perl LWP Curl Error: 'SSL peer certificate was not ok'

Here is my code: my $lwpcurl = LWP::Curl->new(CURLOPT_SSL_VERIFYHOST => 0,CURLOPT_SSL_VERIFYPEER=>0); my $content; $content = $lwpcurl->get($url); I am getting this error: `SSL peer ...
1
vote
1answer
95 views

LWP::Simple get not working via URL

I have a very simple test perl script: #!/usr/bin/perl use CGI; use LWP::Simple; my ($cgireq) = new CGI; print $cgireq->header(); $info = get("http://www.vismetrics.com/"); print 'direct result ...
-1
votes
1answer
111 views

Using Perl LWP::UserAgent I get a response on port 443 but not from port 8443

I am using LWP::UserAgent to check the response from a server. I get a response from port 443 but I am not able to get any response from port 8443. When I use cURL for Windows I get a response code ...
-3
votes
1answer
53 views

Why I can't build https connection with perl and LWP? [closed]

Situation: I need to login to a web site with perl script which is a https connection. Problem I faced: I was supposed get a 302 return, however I got 200 with empty tag. I guess I have ...
0
votes
1answer
65 views

PSGI, LWP::UserAgent & PayPal IPN

I have been trying for some time to get a simple PayPal IPN module working but keep getting a 400 Bad Request error from LWP::UserAgent. I am not sure why this is happening. PayPal pings me fine (I'm ...
-1
votes
3answers
71 views

My LWP Script Not Working

I am running #!/usr/bin/perl -w use strict; use LWP::Simple; my $site = get("http://www.google.com/"); die "Couldn't get it!" unless $site; print "Got it."; But it keeps returning "Couldn't get ...
0
votes
0answers
143 views

Perl LWP useragent->request returns 200 instead of 302

I am new to Perl, but have to use a Perl script to fill up some web forms for a third party. When we run the script on the first environment, it has the correct output: HTTP/1.0 302 Moved Temporarily ...
-4
votes
3answers
45 views

DOWNLOAD MEDIA CONTENTS without using LWP module

can v download media contents and save it in a destination folder without using LWP module??
0
votes
1answer
106 views

Perl Fastest way to download .gz file without getstore

I am interested in downloading a .gz file using perl and extract it in the script itself without storing to file. Getstore stores the file to disk. And is it possible to download the .gz file through ...
1
vote
3answers
86 views

Use Perl to download files from website that requires a p12 certificate

I have a website that I need to download files from. The website requires a digital certificate which I have. I have a p12 file that the site provided which is very easy to import into Windows which ...
2
votes
1answer
75 views

Error in POST request generated by perl

I am getting an error trying to send a POST request from a perl script: use LWP::UserAgent; my $ua = LWP::UserAgent->new; $ua->credentials($netloc,$realm,$username,$password); use ...
-2
votes
1answer
28 views

automating search for website like tair and soybase [closed]

Blockquote hi im new to perl, im doing a work on automating search for website like tair and soybase.. can u please suggest a few methods? thanx in advance any help is much appreciated!!
0
votes
1answer
195 views

Sending POST request with GET variables in URL (with LWP::UserAgent)

I have to make POST request to a URL which also contains GET variables (query string). I tried the following (which looks like a most simepl/logical way) but it does not work: my $ua = ...
2
votes
2answers
71 views

How can I use Test::LWP::UserAgent if I cannot replace the $ua in the app code directly?

I've got a sub that retrieves some data from an API via a REST service. The code is rather simple, but I need to post parameters to the API and I need to use SSL, so I have to go through ...
1
vote
2answers
177 views

Perl LWP: Send Cookie by HTTP header not work

I have known that if you want to use cookie, you must write code as: $ua = LWP::UserAgent->new(); $ua->cookie_jar(HTTP::Cookies->new()); then you can get(), post() and so on. But if I ...
0
votes
3answers
47 views

Got error using LWP

I was trying to use LWP in perl, and I followed the example given in the link:http://www.perl.com/pub/2002/08/20/perlandlwp.html, But I got errors as such: "www.google.com" is not exported by the ...
1
vote
1answer
201 views

Why can't LWP::UserAgent get this site entirely?

It outputs only a few lines from the beginning. #!/usr/bin/perl use strict; use warnings; use LWP::UserAgent; my $ua = LWP::UserAgent->new; my $response = ...
0
votes
3answers
117 views

Print in multiple HTML files

I'm relatively new to PERL. I have a list of URLs from which I want to extract only the text and print it in different files. Here is a sample of my code : #!/usr/bin/perl -w use strict; ...
0
votes
1answer
51 views

Linux post message to server

I have some hard time to post some data to the webserver on specified link. I have a task in what I have to post a code - 125 - with my username specified as my nickname to localhost/zad.php I tried ...
2
votes
2answers
168 views

Image corruption using LWP::UserAgent

The following script runs in a loop, retrieving images using LWP::UserAgent, and resizing them using Image::Magick. I am getting this error from Image::Magick when reading the downloaded image: ...
3
votes
2answers
136 views

Why is Perl HTTP::Response not decoding this apostrophe?

I'm using my $ua = new LWP::UserAgent; $ua->agent("Mozilla/5.0 (Windows NT 6.1; Intel Mac OS X 10.6; rv:7.0.1) Gecko/20100101 Firefox/7.0.1 "); my $url = "http://somedomain.com/page/"; my $req = ...
4
votes
1answer
244 views

How do I change the order of HTTP request headers sent by Perl's LWP?

For a test i need to do a get requets to a website - unfortunatly when using perl lwp the "connection" appears in the header b4 the host. As a result the request gets filtered by the web application ...
1
vote
1answer
528 views

perl save a file downloaded by lwp

Im using LWP to download an executable file type and with the response in memory, i am able to hash the file. However how can i save this file on my system? I think i'm on the wrong track with what ...
0
votes
2answers
222 views

LWP Send Post request and get headers only in response

I have code like this my $ua = new LWP::UserAgent; $ua->timeout($timeout); $ua->agent($useragent); $response = $ua->post($domain,['login_name'=>$login,'login_password'=> ...
0
votes
1answer
158 views

LWP::UserAgent, mod_perl causing large Apache error logs

Each time LWP::UserAgent or LWP::Simple is used with mod_perl (PerlRun), Ubuntu 10.04.4 and Apache 2.2.14 I get about 50 or so error messages in the Apache error log: Constant subroutine ...
3
votes
2answers
223 views

Get raw response headers from LWP?

Is there a way to grab raw, unmodified response headers from an HTTP request made with LWP? This is for a diagnostic tool that needs to identify problems with possibly malformed headers. The ...
1
vote
1answer
69 views

Howto configure LWPx::ParanoidAgent to use /etc/hosts

Recently I switch from using LWP::UserAgent to LWPx::ParanoidAgent to fetch URLs provided by 3rd parties. Its all very well, except sometimes a lookup in /etc/hosts is needed to resolve a domain. ...
2
votes
2answers
432 views

Scripts broke after upgrading LWP “certificate verify failed”

I have a lot of scripts, most of them based around WWW::Mechanize that scrape data off of misc hardware that is accessible via HTTPs. After upgrading most of my perl installation and its modules, all ...
0
votes
1answer
68 views

$_POST is empty after requesting by POST lwp-request

I'm sending POST request from command line (Ubuntu): echo -n '{"prop":"value"}' | POST -c -U "application/json" http://site.com/test Server script outputs its $_POST: <?php var_dump ...
3
votes
1answer
274 views

Perl transparent proxy

I'm trying to create one transparent HTTP proxy. It's purpose is to stay between the browser and the web server and be invisible. Here is the code I'm using. Unfortunately it's not working very well. ...
1
vote
4answers
258 views

Does LWP::UserAgent do any caching

I'm trying to write a monitoring script in Perl which should check a list of URLs. I am using the LWP::UserAgent, HTTP::Response and Time::HiRes modules. Here is a my code: use strict; use warnings; ...
2
votes
2answers
392 views

While using LWP:UserAgent, $response->is_success returns blank

I am using LWP::UserAgent like below my $ua = LWP::UserAgent->new; my $response = $ua->request ( ...); if ( $response->is_success() ) { ... } print $response->is_success(); Problem I ...
1
vote
1answer
297 views

Perl LWP trying to set peer_http_version to HTTP/1.0

Getting a 500 server error trying to connect to a Microsoft-HTTPAPI/2.0 server using perl LWP. Can successfully connect using browser. Only difference I see is browser issues HTTP/1.0 protocol vs LWP ...
4
votes
1answer
152 views

how does wget differ from Perl's lwp?

Im required to use wget for its ability to work like a crawler to develop one for my project. But all around in google searches im seeing people recommend to use LWP instead of Wget. Can you guys ...
3
votes
2answers
2k views

Using LWP with SSL and client certificates

I'm porting an application from PHP/cURL to Perl and LWP::UserAgent. I need to do a POST request to a web server and provide a client certificate and key file. The PHP code I'm trying to replicate is ...
0
votes
0answers
104 views

Perl::Mechanize - how to loop through a set of pages [closed]

good day dear community, i am heading for Perl-programming. I want to learn something. Well i am currently working on a small solution: I have tried various tutorials (examples of Mechanize - that i ...
1
vote
1answer
137 views

Memory leak with Perl's LWP using HTTPS

I think I found a memory leak with LWP when connecting via HTTPS. With the following script, memory usage increases constantly: use LWP::UserAgent; $ua = LWP::UserAgent->new(); $request = ...
0
votes
0answers
159 views

LWP UserAgent Redirect / 302

I have a simple pearl script that POSTs data to a .ASPx page using LWP. The script runs fine, but returns a 302. The .aspx page that I POST to redirects to a second .aspx page that should redirect ...

1 2 3 4