in reply to Authentication with WWW::Mechanize
=head2 How do I get Mech to handle authentication? my $agent = WWW::Mechanize->new(); my @args = ( Authorization => "Basic " . MIME::Base64::encode( USER . ':' . PASS ) ); $agent->credentials( ADDRESS, REALM, USER, PASS ); $agent->get( URL, @args );
xoxo,
Andy
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: Authentication with WWW::Mechanize
by Kanji (Parson) on Sep 19, 2005 at 20:31 UTC | |
Re^2: Authentication with WWW::Mechanize
by cdherold (Monk) on Sep 20, 2005 at 04:43 UTC |