.\" Automatically generated by Pod::Man v1.37, Pod::Parser v1.14 .\" .\" Standard preamble: .\" ======================================================================== .de Sh \" Subsection heading .br .if t .Sp .ne 5 .PP \fB\\$1\fR .PP .. .de Sp \" Vertical space (when we can't use .PP) .if t .sp .5v .if n .sp .. .de Vb \" Begin verbatim text .ft CW .nf .ne \\$1 .. .de Ve \" End verbatim text .ft R .fi .. .\" Set up some character translations and predefined strings. \*(-- will .\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left .\" double quote, and \*(R" will give a right double quote. | will give a .\" real vertical bar. \*(C+ will give a nicer C++. Capital omega is used to .\" do unbreakable dashes and therefore won't be available. \*(C` and \*(C' .\" expand to `' in nroff, nothing in troff, for use with C<>. .tr \(*W-|\(bv\*(Tr .ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p' .ie n \{\ . ds -- \(*W- . ds PI pi . if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch . if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch . ds L" "" . ds R" "" . ds C` "" . ds C' "" 'br\} .el\{\ . ds -- \|\(em\| . ds PI \(*p . ds L" `` . ds R" '' 'br\} .\" .\" If the F register is turned on, we'll generate index entries on stderr for .\" titles (.TH), headers (.SH), subsections (.Sh), items (.Ip), and index .\" entries marked with X<> in POD. Of course, you'll have to process the .\" output yourself in some meaningful fashion. .if \nF \{\ . de IX . tm Index:\\$1\t\\n%\t"\\$2" .. . nr % 0 . rr F .\} .\" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .hy 0 .if n .na .\" .\" Accent mark definitions (@(#)ms.acc 1.5 88/02/08 SMI; from UCB 4.2). .\" Fear. Run. Save yourself. No user-serviceable parts. . \" fudge factors for nroff and troff .if n \{\ . ds #H 0 . ds #V .8m . ds #F .3m . ds #[ \f1 . ds #] \fP .\} .if t \{\ . ds #H ((1u-(\\\\n(.fu%2u))*.13m) . ds #V .6m . ds #F 0 . ds #[ \& . ds #] \& .\} . \" simple accents for nroff and troff .if n \{\ . ds ' \& . ds ` \& . ds ^ \& . ds , \& . ds ~ ~ . ds / .\} .if t \{\ . ds ' \\k:\h'-(\\n(.wu*8/10-\*(#H)'\'\h"|\\n:u" . ds ` \\k:\h'-(\\n(.wu*8/10-\*(#H)'\`\h'|\\n:u' . ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'^\h'|\\n:u' . ds , \\k:\h'-(\\n(.wu*8/10)',\h'|\\n:u' . ds ~ \\k:\h'-(\\n(.wu-\*(#H-.1m)'~\h'|\\n:u' . ds / \\k:\h'-(\\n(.wu*8/10-\*(#H)'\z\(sl\h'|\\n:u' .\} . \" troff and (daisy-wheel) nroff accents .ds : \\k:\h'-(\\n(.wu*8/10-\*(#H+.1m+\*(#F)'\v'-\*(#V'\z.\h'.2m+\*(#F'.\h'|\\n:u'\v'\*(#V' .ds 8 \h'\*(#H'\(*b\h'-\*(#H' .ds o \\k:\h'-(\\n(.wu+\w'\(de'u-\*(#H)/2u'\v'-.3n'\*(#[\z\(de\v'.3n'\h'|\\n:u'\*(#] .ds d- \h'\*(#H'\(pd\h'-\w'~'u'\v'-.25m'\f2\(hy\fP\v'.25m'\h'-\*(#H' .ds D- D\\k:\h'-\w'D'u'\v'-.11m'\z\(hy\v'.11m'\h'|\\n:u' .ds th \*(#[\v'.3m'\s+1I\s-1\v'-.3m'\h'-(\w'I'u*2/3)'\s-1o\s+1\*(#] .ds Th \*(#[\s+2I\s-2\h'-\w'I'u*3/5'\v'-.3m'o\v'.3m'\*(#] .ds ae a\h'-(\w'a'u*4/10)'e .ds Ae A\h'-(\w'A'u*4/10)'E . \" corrections for vroff .if v .ds ~ \\k:\h'-(\\n(.wu*9/10-\*(#H)'\s-2\u~\d\s+2\h'|\\n:u' .if v .ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'\v'-.4m'^\v'.4m'\h'|\\n:u' . \" for low resolution devices (crt and lpr) .if \n(.H>23 .if \n(.V>19 \ \{\ . ds : e . ds 8 ss . ds o a . ds d- d\h'-1'\(ga . ds D- D\h'-1'\(hy . ds th \o'bp' . ds Th \o'LP' . ds ae ae . ds Ae AE .\} .rm #[ #] #H #V #F C .\" ======================================================================== .\" .IX Title "LWP::UserAgent 3" .TH LWP::UserAgent 3 "2004-04-06" "perl v5.8.4" "User Contributed Perl Documentation" .SH "NAME" LWP::UserAgent \- Web user agent class .SH "SYNOPSIS" .IX Header "SYNOPSIS" .Vb 1 \& require LWP::UserAgent; .Ve .PP .Vb 3 \& my $ua = LWP::UserAgent->new; \& $ua->timeout(10); \& $ua->env_proxy; .Ve .PP .Vb 1 \& my $response = $ua->get('http://search.cpan.org/'); .Ve .PP .Vb 6 \& if ($response->is_success) { \& print $response->content; # or whatever \& } \& else { \& die $response->status_line; \& } .Ve .SH "DESCRIPTION" .IX Header "DESCRIPTION" The \f(CW\*(C`LWP::UserAgent\*(C'\fR is a class implementing a web user agent. \&\f(CW\*(C`LWP::UserAgent\*(C'\fR objects can be used to dispatch web requests. .PP In normal use the application creates an \f(CW\*(C`LWP::UserAgent\*(C'\fR object, and then configures it with values for timeouts, proxies, name, etc. It then creates an instance of \f(CW\*(C`HTTP::Request\*(C'\fR for the request that needs to be performed. This request is then passed to one of the request method the UserAgent, which dispatches it using the relevant protocol, and returns a \f(CW\*(C`HTTP::Response\*(C'\fR object. There are convenience methods for sending the most common request types: \fIget()\fR, \&\fIhead()\fR and \fIpost()\fR. When using these methods then the creation of the request object is hidden as shown in the synopsis above. .PP The basic approach of the library is to use \s-1HTTP\s0 style communication for all protocol schemes. This means that you will construct \&\f(CW\*(C`HTTP::Request\*(C'\fR objects and receive \f(CW\*(C`HTTP::Response\*(C'\fR objects even for non-HTTP resources like \fIgopher\fR and \fIftp\fR. In order to achieve even more similarity to \s-1HTTP\s0 style communications, gopher menus and file directories are converted to \s-1HTML\s0 documents. .SH "CONSTRUCTOR METHODS" .IX Header "CONSTRUCTOR METHODS" The following constructor methods are available: .ie n .IP "$ua = LWP::UserAgent\->new( %options )" 4 .el .IP "$ua = LWP::UserAgent\->new( \f(CW%options\fR )" 4 .IX Item "$ua = LWP::UserAgent->new( %options )" This method constructs a new \f(CW\*(C`LWP::UserAgent\*(C'\fR object and returns it. Key/value pair arguments may be provided to set up the initial state. The following options correspond to attribute methods described below: .Sp .Vb 14 \& 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 .Ve .Sp The following additional options are also accepted: If the \&\f(CW\*(C`env_proxy\*(C'\fR option is passed in with a \s-1TRUE\s0 value, then proxy settings are read from environment variables (see \fIenv_proxy()\fR method below). If the \f(CW\*(C`keep_alive\*(C'\fR option is passed in, then a \&\f(CW\*(C`LWP::ConnCache\*(C'\fR is set up (see \fIconn_cache()\fR method below). The \&\f(CW\*(C`keep_alive\*(C'\fR value is passed on as the \f(CW\*(C`total_capacity\*(C'\fR for the connection cache. .IP "$ua\->clone" 4 .IX Item "$ua->clone" Returns a copy of the LWP::UserAgent object. .SH "ATTRIBUTES" .IX Header "ATTRIBUTES" The settings of the configuration attributes modify the behaviour of the \&\f(CW\*(C`LWP::UserAgent\*(C'\fR when it dispatches requests. Most of these can also be initialized by options passed to the constructor method. .PP The following attributes methods are provided. The attribute value is left unchanged if no argument is given. The return value from each method is the old attribute value. .IP "$ua\->agent" 4 .IX Item "$ua->agent" .PD 0 .ie n .IP "$ua\->agent( $product_id )" 4 .el .IP "$ua\->agent( \f(CW$product_id\fR )" 4 .IX Item "$ua->agent( $product_id )" .PD Get/set the product token that is used to identify the user agent on the network. The agent value is sent as the \*(L"User\-Agent\*(R" header in the requests. The default is the string returned by the \fI_agent()\fR method (see below). .Sp If the \f(CW$product_id\fR ends with space then the \fI_agent()\fR string is appended to it. .Sp The user agent string should be one or more simple product identifiers with an optional version number separated by the \*(L"/\*(R" character. Examples are: .Sp .Vb 4 \& $ua->agent('Checkbot/0.4 ' . $ua->_agent); \& $ua->agent('Checkbot/0.4 '); # same as above \& $ua->agent('Mozilla/5.0'); \& $ua->agent(""); # don't identify .Ve .IP "$ua\->_agent" 4 .IX Item "$ua->_agent" Returns the default agent identifier. This is a string of the form \&\*(L"libwww\-perl/#.##\*(R", where \*(L"#.##\*(R" is substituted with the version number of this library. .IP "$ua\->from" 4 .IX Item "$ua->from" .PD 0 .ie n .IP "$ua\->from( $email_address )" 4 .el .IP "$ua\->from( \f(CW$email_address\fR )" 4 .IX Item "$ua->from( $email_address )" .PD Get/set the e\-mail address for the human user who controls the requesting user agent. The address should be machine\-usable, as defined in \s-1RFC\s0 822. The \f(CW\*(C`from\*(C'\fR value is send as the \*(L"From\*(R" header in the requests. Example: .Sp .Vb 1 \& $ua->from('gaas@cpan.org'); .Ve .Sp The default is to not send a \*(L"From\*(R" header. See the \fIdefault_headers()\fR method for the more general interface that allow any header to be defaulted. .IP "$ua\->cookie_jar" 4 .IX Item "$ua->cookie_jar" .PD 0 .ie n .IP "$ua\->cookie_jar( $cookie_jar_obj )" 4 .el .IP "$ua\->cookie_jar( \f(CW$cookie_jar_obj\fR )" 4 .IX Item "$ua->cookie_jar( $cookie_jar_obj )" .PD Get/set the cookie jar object to use. The only requirement is that the cookie jar object must implement the extract_cookies($request) and add_cookie_header($response) methods. These methods will then be invoked by the user agent as requests are sent and responses are received. Normally this will be a \f(CW\*(C`HTTP::Cookies\*(C'\fR object or some subclass. .Sp The default is to have no cookie_jar, i.e. never automatically add \&\*(L"Cookie\*(R" headers to the requests. .Sp Shortcut: If a reference to a plain hash is passed in as the \&\f(CW$cookie_jar_object\fR, then it is replaced with an instance of \&\f(CW\*(C`HTTP::Cookies\*(C'\fR that is initialized based on the hash. This form also automatically loads the \f(CW\*(C`HTTP::Cookies\*(C'\fR module. It means that: .Sp .Vb 1 \& $ua->cookie_jar({ file => "$ENV{HOME}/.cookies.txt" }); .Ve .Sp is really just a shortcut for: .Sp .Vb 2 \& require HTTP::Cookies; \& $ua->cookie_jar(HTTP::Cookies->new(file => "$ENV{HOME}/.cookies.txt")); .Ve .IP "$ua\->default_headers" 4 .IX Item "$ua->default_headers" .PD 0 .ie n .IP "$ua\->default_headers( $headers_obj )" 4 .el .IP "$ua\->default_headers( \f(CW$headers_obj\fR )" 4 .IX Item "$ua->default_headers( $headers_obj )" .PD Get/set the headers object that will provide default header values for any requests sent. By default this will be an empty \f(CW\*(C`HTTP::Headers\*(C'\fR object. Example: .Sp .Vb 1 \& $ua->default_headers->push_header('Accept-Language' => "no, en"); .Ve .ie n .IP "$ua\->default_header( $field )" 4 .el .IP "$ua\->default_header( \f(CW$field\fR )" 4 .IX Item "$ua->default_header( $field )" .PD 0 .ie n .IP "$ua\->default_header( $field\fR => \f(CW$value )" 4 .el .IP "$ua\->default_header( \f(CW$field\fR => \f(CW$value\fR )" 4 .IX Item "$ua->default_header( $field => $value )" .PD This is just a short-cut for \f(CW$ua\fR\->default_headers\->header( \f(CW$field\fR => \&\f(CW$value\fR ). Example: .Sp .Vb 1 \& $ua->default_header('Accept-Language' => "no, en"); .Ve .IP "$ua\->conn_cache" 4 .IX Item "$ua->conn_cache" .PD 0 .ie n .IP "$ua\->conn_cache( $cache_obj )" 4 .el .IP "$ua\->conn_cache( \f(CW$cache_obj\fR )" 4 .IX Item "$ua->conn_cache( $cache_obj )" .PD Get/set the \f(CW\*(C`LWP::ConnCache\*(C'\fR object to use. See LWP::ConnCache for details. .ie n .IP "$ua\->credentials( $netloc\fR, \f(CW$realm\fR, \f(CW$uname\fR, \f(CW$pass )" 4 .el .IP "$ua\->credentials( \f(CW$netloc\fR, \f(CW$realm\fR, \f(CW$uname\fR, \f(CW$pass\fR )" 4 .IX Item "$ua->credentials( $netloc, $realm, $uname, $pass )" Set the user name and password to be used for a realm. It is often more useful to specialize the \fIget_basic_credentials()\fR method instead. .IP "$ua\->max_size" 4 .IX Item "$ua->max_size" .PD 0 .ie n .IP "$ua\->max_size( $bytes )" 4 .el .IP "$ua\->max_size( \f(CW$bytes\fR )" 4 .IX Item "$ua->max_size( $bytes )" .PD Get/set the size limit for response content. The default is \f(CW\*(C`undef\*(C'\fR, which means that there is no limit. If the returned response content is only partial, because the size limit was exceeded, then a \&\*(L"Client\-Aborted\*(R" header will be added to the response. The content might end up longer than \f(CW\*(C`max_size\*(C'\fR as we abort once appending a chunk of data makes the length exceed the limit. The \*(L"Content\-Length\*(R" header, if present, will indicate the length of the full content and will normally not be the same as \f(CW\*(C`length($res\->content)\*(C'\fR. .IP "$ua\->max_redirect" 4 .IX Item "$ua->max_redirect" .PD 0 .ie n .IP "$ua\->max_redirect( $n )" 4 .el .IP "$ua\->max_redirect( \f(CW$n\fR )" 4 .IX Item "$ua->max_redirect( $n )" .PD This reads or sets the object's limit of how many times it will obey redirection responses in a given request cycle. .Sp By default, the value is 7. This means that if you call \fIrequest()\fR method and the response is a redirect elsewhere which is in turn a redirect, and so on seven times, then \s-1LWP\s0 gives up after that seventh request. .IP "$ua\->parse_head" 4 .IX Item "$ua->parse_head" .PD 0 .ie n .IP "$ua\->parse_head( $boolean )" 4 .el .IP "$ua\->parse_head( \f(CW$boolean\fR )" 4 .IX Item "$ua->parse_head( $boolean )" .PD Get/set a value indicating whether we should initialize response headers from the section of \s-1HTML\s0 documents. The default is \&\s-1TRUE\s0. Do not turn this off, unless you know what you are doing. .IP "$ua\->protocols_allowed" 4 .IX Item "$ua->protocols_allowed" .PD 0 .IP "$ua\->protocols_allowed( \e@protocols )" 4 .IX Item "$ua->protocols_allowed( @protocols )" .PD This reads (or sets) this user agent's list of protocols that the request methods will exclusively allow. The protocol names are case insensitive. .Sp For example: \f(CW\*(C`$ua\->protocols_allowed( [ 'http', 'https'] );\*(C'\fR means that this user agent will \fIallow only\fR those protocols, and attempts to use this user agent to access URLs with any other schemes (like \*(L"ftp://...\*(R") will result in a 500 error. .Sp To delete the list, call: \f(CW\*(C`$ua\->protocols_allowed(undef)\*(C'\fR .Sp By default, an object has neither a \f(CW\*(C`protocols_allowed\*(C'\fR list, nor a \&\f(CW\*(C`protocols_forbidden\*(C'\fR list. .Sp Note that having a \f(CW\*(C`protocols_allowed\*(C'\fR list causes any \&\f(CW\*(C`protocols_forbidden\*(C'\fR list to be ignored. .IP "$ua\->protocols_forbidden" 4 .IX Item "$ua->protocols_forbidden" .PD 0 .IP "$ua\->protocols_forbidden( \e@protocols )" 4 .IX Item "$ua->protocols_forbidden( @protocols )" .PD This reads (or sets) this user agent's list of protocols that the request method will \fInot\fR allow. The protocol names are case insensitive. .Sp For example: \f(CW\*(C`$ua\->protocols_forbidden( [ 'file', 'mailto'] );\*(C'\fR means that this user agent will \fInot\fR allow those protocols, and attempts to use this user agent to access URLs with those schemes will result in a 500 error. .Sp To delete the list, call: \f(CW\*(C`$ua\->protocols_forbidden(undef)\*(C'\fR .IP "$ua\->requests_redirectable" 4 .IX Item "$ua->requests_redirectable" .PD 0 .IP "$ua\->requests_redirectable( \e@requests )" 4 .IX Item "$ua->requests_redirectable( @requests )" .PD This reads or sets the object's list of request names that \&\f(CW\*(C`$ua\->redirect_ok(...)\*(C'\fR will allow redirection for. By default, this is \f(CW\*(C`['GET', 'HEAD']\*(C'\fR, as per \s-1RFC\s0 2616. To change to include '\s-1POST\s0', consider: .Sp .Vb 1 \& push @{ $ua->requests_redirectable }, 'POST'; .Ve .IP "$ua\->timeout" 4 .IX Item "$ua->timeout" .PD 0 .ie n .IP "$ua\->timeout( $secs )" 4 .el .IP "$ua\->timeout( \f(CW$secs\fR )" 4 .IX Item "$ua->timeout( $secs )" .PD Get/set the timeout value in seconds. The default \fItimeout()\fR value is 180 seconds, i.e. 3 minutes. .Sp The requests is aborted if no activity on the connection to the server is observed for \f(CW\*(C`timeout\*(C'\fR seconds. This means that the time it takes for the complete transaction and the \fIrequest()\fR method to actually return might be longer. .Sh "Proxy attributes" .IX Subsection "Proxy attributes" The following methods set up when requests should be passed via a proxy server. .ie n .IP "$ua\->proxy(\e@schemes, $proxy_url)" 4 .el .IP "$ua\->proxy(\e@schemes, \f(CW$proxy_url\fR)" 4 .IX Item "$ua->proxy(@schemes, $proxy_url)" .PD 0 .ie n .IP "$ua\->proxy($scheme, $proxy_url)" 4 .el .IP "$ua\->proxy($scheme, \f(CW$proxy_url\fR)" 4 .IX Item "$ua->proxy($scheme, $proxy_url)" .PD Set/retrieve proxy \s-1URL\s0 for a scheme: .Sp .Vb 2 \& $ua->proxy(['http', 'ftp'], 'http://proxy.sn.no:8001/'); \& $ua->proxy('gopher', 'http://proxy.sn.no:8001/'); .Ve .Sp The first form specifies that the \s-1URL\s0 is to be used for proxying of access methods listed in the list in the first method argument, i.e. 'http' and 'ftp'. .Sp The second form shows a shorthand form for specifying proxy \s-1URL\s0 for a single access scheme. .ie n .IP "$ua\->no_proxy( $domain, ... )" 4 .el .IP "$ua\->no_proxy( \f(CW$domain\fR, ... )" 4 .IX Item "$ua->no_proxy( $domain, ... )" Do not proxy requests to the given domains. Calling no_proxy without any domains clears the list of domains. Eg: .Sp .Vb 1 \& $ua->no_proxy('localhost', 'no', ...); .Ve .IP "$ua\->env_proxy" 4 .IX Item "$ua->env_proxy" Load proxy settings from *_proxy environment variables. You might specify proxies like this (sh\-syntax): .Sp .Vb 4 \& gopher_proxy=http://proxy.my.place/ \& wais_proxy=http://proxy.my.place/ \& no_proxy="localhost,my.domain" \& export gopher_proxy wais_proxy no_proxy .Ve .Sp csh or tcsh users should use the \f(CW\*(C`setenv\*(C'\fR command to define these environment variables. .Sp On systems with case insensitive environment variables there exists a name clash between the \s-1CGI\s0 environment variables and the \f(CW\*(C`HTTP_PROXY\*(C'\fR environment variable normally picked up by \fIenv_proxy()\fR. Because of this \f(CW\*(C`HTTP_PROXY\*(C'\fR is not honored for \s-1CGI\s0 scripts. The \&\f(CW\*(C`CGI_HTTP_PROXY\*(C'\fR environment variable can be used instead. .SH "REQUEST METHODS" .IX Header "REQUEST METHODS" The methods described in this section are used to dispatch requests via the user agent. The following request methods are provided: .ie n .IP "$ua\->get( $url )" 4 .el .IP "$ua\->get( \f(CW$url\fR )" 4 .IX Item "$ua->get( $url )" .PD 0 .ie n .IP "$ua\->get( $url\fR , \f(CW$field_name\fR => \f(CW$value, ... )" 4 .el .IP "$ua\->get( \f(CW$url\fR , \f(CW$field_name\fR => \f(CW$value\fR, ... )" 4 .IX Item "$ua->get( $url , $field_name => $value, ... )" .PD This method will dispatch a \f(CW\*(C`GET\*(C'\fR request on the given \f(CW$url\fR. Further arguments can be given to initialize the headers of the request. These are given as separate name/value pairs. The return value is a response object. See HTTP::Response for a description of the interface it provides. .Sp Fields names that start with \*(L":\*(R" are special. These will not initialize headers of the request but will determine how the response content is treated. The following special field names are recognized: .Sp .Vb 3 \& :content_file => $filename \& :content_cb => \e&callback \& :read_size_hint => $bytes .Ve .Sp If a \f(CW$filename\fR is provided with the \f(CW\*(C`:content_file\*(C'\fR option, then the response content will be saved here instead of in the response object. If a callback is provided with the \f(CW\*(C`:content_cb\*(C'\fR option then this function will be called for each chunk of the response content as it is received from the server. If neither of these options are given, then the response content will accumulate in the response object itself. This might not be suitable for very large response bodies. Only one of \f(CW\*(C`:content_file\*(C'\fR or \f(CW\*(C`:content_cb\*(C'\fR can be specified. The content of unsuccessful responses will always accumulate in the response object itself, regardless of the \&\f(CW\*(C`:content_file\*(C'\fR or \f(CW\*(C`:content_cb\*(C'\fR options passed in. .Sp The \f(CW\*(C`:read_size_hint\*(C'\fR option is passed to the protocol module which will try to read data from the server in chunks of this size. A smaller value for the \f(CW\*(C`:read_size_hint\*(C'\fR will result in a higher number of callback invocations. .Sp The callback function is called with 3 arguments: a chunk of data, a reference to the response object, and a reference to the protocol object. The callback can abort the request by invoking \fIdie()\fR. The exception message will show up as the \*(L"X\-Died\*(R" header field in the response returned by the \fIget()\fR function. .ie n .IP "$ua\->head( $url )" 4 .el .IP "$ua\->head( \f(CW$url\fR )" 4 .IX Item "$ua->head( $url )" .PD 0 .ie n .IP "$ua\->head( $url\fR , \f(CW$field_name\fR => \f(CW$value, ... )" 4 .el .IP "$ua\->head( \f(CW$url\fR , \f(CW$field_name\fR => \f(CW$value\fR, ... )" 4 .IX Item "$ua->head( $url , $field_name => $value, ... )" .PD This method will dispatch a \f(CW\*(C`HEAD\*(C'\fR request on the given \f(CW$url\fR. Otherwise it works like the \fIget()\fR method described above. .ie n .IP "$ua\->post( $url, \e%form )" 4 .el .IP "$ua\->post( \f(CW$url\fR, \e%form )" 4 .IX Item "$ua->post( $url, %form )" .PD 0 .ie n .IP "$ua\->post( $url, \e@form )" 4 .el .IP "$ua\->post( \f(CW$url\fR, \e@form )" 4 .IX Item "$ua->post( $url, @form )" .ie n .IP "$ua\->post( $url\fR, \e%form, \f(CW$field_name\fR => \f(CW$value, ... )" 4 .el .IP "$ua\->post( \f(CW$url\fR, \e%form, \f(CW$field_name\fR => \f(CW$value\fR, ... )" 4 .IX Item "$ua->post( $url, %form, $field_name => $value, ... )" .PD This method will dispatch a \f(CW\*(C`POST\*(C'\fR request on the given \f(CW$url\fR, with \&\f(CW%form\fR or \f(CW@form\fR providing the key/value pairs for the fill-in form content. Additional headers and content options are the same as for the \fIget()\fR method. .Sp This method will use the \s-1\fIPOST\s0()\fR function from \f(CW\*(C`HTTP::Request::Common\*(C'\fR to build the request. See HTTP::Request::Common for a details on how to pass form content and other advanced features. .ie n .IP "$ua\->mirror( $url\fR, \f(CW$filename )" 4 .el .IP "$ua\->mirror( \f(CW$url\fR, \f(CW$filename\fR )" 4 .IX Item "$ua->mirror( $url, $filename )" This method will get the document identified by \f(CW$url\fR and store it in file called \f(CW$filename\fR. If the file already exists, then the request will contain an \*(L"If\-Modified\-Since\*(R" header matching the modification time of the file. If the document on the server has not changed since this time, then nothing happens. If the document has been updated, it will be downloaded again. The modification time of the file will be forced to match that of the server. .Sp The return value is the the response object. .ie n .IP "$ua\->request( $request )" 4 .el .IP "$ua\->request( \f(CW$request\fR )" 4 .IX Item "$ua->request( $request )" .PD 0 .ie n .IP "$ua\->request( $request\fR, \f(CW$content_file )" 4 .el .IP "$ua\->request( \f(CW$request\fR, \f(CW$content_file\fR )" 4 .IX Item "$ua->request( $request, $content_file )" .ie n .IP "$ua\->request( $request\fR, \f(CW$content_cb )" 4 .el .IP "$ua\->request( \f(CW$request\fR, \f(CW$content_cb\fR )" 4 .IX Item "$ua->request( $request, $content_cb )" .ie n .IP "$ua\->request( $request\fR, \f(CW$content_cb\fR, \f(CW$read_size_hint )" 4 .el .IP "$ua\->request( \f(CW$request\fR, \f(CW$content_cb\fR, \f(CW$read_size_hint\fR )" 4 .IX Item "$ua->request( $request, $content_cb, $read_size_hint )" .PD This method will dispatch the given \f(CW$request\fR object. Normally this will be an instance of the \f(CW\*(C`HTTP::Request\*(C'\fR class, but any object with a similar interface will do. The return value is a response object. See HTTP::Request and HTTP::Response for a description of the interface provided by these classes. .Sp The \fIrequest()\fR method will process redirects and authentication responses transparently. This means that it may actually send several simple requests via the \fIsimple_request()\fR method described below. .Sp The request methods described above; \fIget()\fR, \fIhead()\fR, \fIpost()\fR and \&\fImirror()\fR, will all dispatch the request they build via this method. They are convenience methods that simply hides the creation of the request object for you. .Sp The \f(CW$content_file\fR, \f(CW$content_cb\fR and \f(CW$read_size_hint\fR all correspond to options described with the \fIget()\fR method above. .Sp You are allowed to use a \s-1CODE\s0 reference as \f(CW\*(C`content\*(C'\fR in the request object passed in. The \f(CW\*(C`content\*(C'\fR function should return the content when called. The content can be returned in chunks. The content function will be invoked repeatedly until it return an empty string to signal that there is no more content. .ie n .IP "$ua\->simple_request( $request )" 4 .el .IP "$ua\->simple_request( \f(CW$request\fR )" 4 .IX Item "$ua->simple_request( $request )" .PD 0 .ie n .IP "$ua\->simple_request( $request\fR, \f(CW$content_file )" 4 .el .IP "$ua\->simple_request( \f(CW$request\fR, \f(CW$content_file\fR )" 4 .IX Item "$ua->simple_request( $request, $content_file )" .ie n .IP "$ua\->simple_request( $request\fR, \f(CW$content_cb )" 4 .el .IP "$ua\->simple_request( \f(CW$request\fR, \f(CW$content_cb\fR )" 4 .IX Item "$ua->simple_request( $request, $content_cb )" .ie n .IP "$ua\->simple_request( $request\fR, \f(CW$content_cb\fR, \f(CW$read_size_hint )" 4 .el .IP "$ua\->simple_request( \f(CW$request\fR, \f(CW$content_cb\fR, \f(CW$read_size_hint\fR )" 4 .IX Item "$ua->simple_request( $request, $content_cb, $read_size_hint )" .PD This method dispatches a single request and returns the response received. Arguments are the same as for \fIrequest()\fR described above. .Sp The difference from \fIrequest()\fR is that \fIsimple_request()\fR will not try to handle redirects or authentication responses. The \fIrequest()\fR method will in fact invoke this method for each simple request it sends. .ie n .IP "$ua\->is_protocol_supported( $scheme )" 4 .el .IP "$ua\->is_protocol_supported( \f(CW$scheme\fR )" 4 .IX Item "$ua->is_protocol_supported( $scheme )" You can use this method to test whether this user agent object supports the specified \f(CW\*(C`scheme\*(C'\fR. (The \f(CW\*(C`scheme\*(C'\fR might be a string (like 'http' or \&'ftp') or it might be an \s-1URI\s0 object reference.) .Sp Whether a scheme is supported, is determined by the user agent's \&\f(CW\*(C`protocols_allowed\*(C'\fR or \f(CW\*(C`protocols_forbidden\*(C'\fR lists (if any), and by the capabilities of \s-1LWP\s0. I.e., this will return \s-1TRUE\s0 only if \s-1LWP\s0 supports this protocol \fIand\fR it's permitted for this particular object. .Sh "Callback methods" .IX Subsection "Callback methods" The following methods will be invoked as requests are processed. These methods are documented here because subclasses of \f(CW\*(C`LWP::UserAgent\*(C'\fR might want to override their behaviour. .ie n .IP "$ua\->prepare_request( $request )" 4 .el .IP "$ua\->prepare_request( \f(CW$request\fR )" 4 .IX Item "$ua->prepare_request( $request )" This method is invoked by \fIsimple_request()\fR. Its task is to modify the given \f(CW$request\fR object by setting up various headers based on the attributes of the user agent. The return value should normally be the \&\f(CW$request\fR object passed in. If a different request object is returned it will be the one actually processed. .Sp The headers affected by the base implementation are; \*(L"User\-Agent\*(R", \&\*(L"From\*(R", \*(L"Range\*(R" and \*(L"Cookie\*(R". .ie n .IP "$ua\->redirect_ok( $prospective_request\fR, \f(CW$response )" 4 .el .IP "$ua\->redirect_ok( \f(CW$prospective_request\fR, \f(CW$response\fR )" 4 .IX Item "$ua->redirect_ok( $prospective_request, $response )" This method is called by \fIrequest()\fR before it tries to follow a redirection to the request in \f(CW$response\fR. This should return a \s-1TRUE\s0 value if this redirection is permissible. The \f(CW$prospective_request\fR will be the request to be sent if this method returns \s-1TRUE\s0. .Sp The base implementation will return \s-1FALSE\s0 unless the method is in the object's \f(CW\*(C`requests_redirectable\*(C'\fR list, \&\s-1FALSE\s0 if the proposed redirection is to a \*(L"file://...\*(R" \&\s-1URL\s0, and \s-1TRUE\s0 otherwise. .ie n .IP "$ua\->get_basic_credentials( $realm\fR, \f(CW$uri\fR, \f(CW$isproxy )" 4 .el .IP "$ua\->get_basic_credentials( \f(CW$realm\fR, \f(CW$uri\fR, \f(CW$isproxy\fR )" 4 .IX Item "$ua->get_basic_credentials( $realm, $uri, $isproxy )" This is called by \fIrequest()\fR to retrieve credentials for documents protected by Basic or Digest Authentication. The arguments passed in is the \f(CW$realm\fR provided by the server, the \f(CW$uri\fR requested and a boolean flag to indicate if this is authentication against a proxy server. .Sp The method should return a username and password. It should return an empty list to abort the authentication resolution attempt. Subclasses can override this method to prompt the user for the information. An example of this can be found in \f(CW\*(C`lwp\-request\*(C'\fR program distributed with this library. .Sp The base implementation simply checks a set of pre-stored member variables, set up with the \fIcredentials()\fR method. .SH "SEE ALSO" .IX Header "SEE ALSO" See \s-1LWP\s0 for a complete overview of libwww\-perl5. See lwpcook and the scripts \fIlwp-request\fR and \fIlwp-download\fR for examples of usage. .PP See HTTP::Request and HTTP::Response for a description of the message objects dispatched and received. See HTTP::Request::Common and HTML::Form for other ways to build request objects. .PP See WWW::Mechanize and WWW::Search for examples of more specialized user agents based on \f(CW\*(C`LWP::UserAgent\*(C'\fR. .SH "COPYRIGHT" .IX Header "COPYRIGHT" Copyright 1995\-2004 Gisle Aas. .PP This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.