in reply to HTTP::Headers, HTTP::Request, Authentication, LWP::Useragent
Documents protected by basic authorization can easily be accessed like this:
use LWP::UserAgent; $ua = LWP::UserAgent->new; $req = HTTP::Request->new(GET => 'http://www.asite.com/'); $req->authorization_basic('myuid', 'mypassword'); print $ua->request($req)->as_string;
The other alternative is to provide a subclass of LWP::UserAgent that overrides the get_basic_credentials() method. Study the lwp-request program for an example of this.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re (tilly) 2: HTTP::Headers, HTTP::Request, Authentication, LWP::Useragent
by tilly (Archbishop) on Mar 28, 2001 at 09:42 UTC |