Top "Lwp-useragent" questions

The LWP::UserAgent is a class implementing a web user agent in the libwww-perl library.

HTTPS Proxy and LWP::UserAgent

I have read a number of threads on a number of sites and am still unable to make this work. …

perl https proxy lwp lwp-useragent
LWP::UserAgent HTTP Basic Authentication

I tried to run this perl5 program: #!/usr/bin/env perl use strict; use warnings; use LWP; my $ua = LWP::…

perl lwp lwp-useragent
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 …

perl lwp lwp-useragent
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 …

perl ssl openssl lwp lwp-useragent
handle lwp timeout effectively

I am using LWP to download content from web pages, and I would like to limit the amount of time …

perl timeout lwp lwp-useragent
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. …

perl lwp lwp-useragent
Perl module LWP::Protocol::https installation fails on Ubuntu

Wanting to use LWP::UserAgent on an HTTPS resource, I was asked to install missing module LWP::Protocol::https. Fine. …

perl ubuntu ssl cpan lwp-useragent
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; …

perl http perl-module lwp-useragent
LWP::UserAgent Insists on verifying hostname

The following script works returns a comprehensive headers on a host running libwww-perl-5.836 but not on the host using libwww-perl-6.30.0. …

perl http lwp-useragent
Make timeout work for LWP::UserAgent HTTPS

Solution As reported by @limulus in the answer I accepted, this was a bug in Net::HTTPS version 6.00. Always be …

perl ssl timeout lwp lwp-useragent