in reply to Re^7: LWP and Digest Authentication
in thread LWP and Digest Authentication
Nowhere in any of the examples or tutorials does it show the possibility of passing userid and password to either LWP->new or LWP::UserAgent->new. The former seems to accept no parameters, and the latter is defined as taking these options:
KEY DEFAULT ----------- -------------------- agent "libwww-perl/#.##" from undef conn_cache undef cookie_jar undef default_headers HTTP::Headers->new max_size undef max_redirect 7 parse_head 1 protocols_allowed undef protocols_forbidden undef requests_redirectable ['GET', 'HEAD'] timeout 180
So, you've overridden & extended new() in order to pass two parameters: userid & password.
And overridden get_basic_credentials() in order to associate those with a third parameter: realm, and maybe a fourth: url (which you pass in to get(), in order to do digest authentication.
You know, it ain't like LWP was designed and implemented by some rank newbie.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^9: LWP and Digest Authentication
by ikegami (Patriarch) on Feb 11, 2009 at 14:45 UTC | |
by BrowserUk (Patriarch) on Feb 11, 2009 at 19:29 UTC | |
by ikegami (Patriarch) on Feb 11, 2009 at 19:52 UTC |