in reply to Downloading files from a Secured Site
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 |