http://www.perlmonks.org?node_id=617281


in reply to Downloading files from a Secured Site

I like WWW::Mechanize.

Something like this:

use strict; use warnings; use WWW::Mechanize; my $mech = WWW::Mechanize->new; $mech->credentials('user', 'pass'); my $response = $mech->get('http://foo.com'); die $response->status_line unless $response->is_success; printf "content-type: %s\n", $response->header('Content-Type'); my $data = $response->content;

Replies are listed 'Best First'.
Re^2: Downloading files from a Secured Site - response to update
by imp (Priest) on May 24, 2007 at 17:52 UTC
    In response to your update:
    You will need Crypt::SSLeay for https traffic. See the section on PKCS12 support.

    Updated example:

    use strict; use warnings; use WWW::Mechanize; use Crypt::SSLeay; $ENV{HTTPS_PKCS12_FILE} = 'certs/pkcs12.pkcs12'; $ENV{HTTPS_PKCS12_PASSWORD} = 'PKCS12_PASSWORD'; my $mech = WWW::Mechanize->new; $mech->credentials('user', 'pass'); my $response = $mech->get('https://foo.com'); die $response->status_line unless $response->is_success; printf "content-type: %s\n", $response->header('Content-Type'); my $data = $response->content;