This module is meant for people who want a simplified view of the
libwww-perl library. It should also be suitable for one-liners. If
you need more control or access to the header fields in the requests
sent and responses received, then you should use the full object-oriented
interface provided by the LWP::UserAgent module.
The following functions are provided (and exported) by this module:
The get() function will fetch the document identified by the given URL
and return it. It returns undefif it fails. The $url argument can
be either a simple string or a reference to a URI object.
You will not be able to examine the response code or response headers
(like 'Content-Type') when you are accessing the web using this
function. If you need that information you should use the full OO
interface (see the LWP::UserAgent manpage).
Get and print a document identified by a URL. The document is printed
to the selected default filehandle for output (normally STDOUT) as
data is received from the network. If the request fails, then the
status code and message are printed on STDERR. The return value is
the HTTP response code.
Get and store a document identified by a URL, using
If-modified-since, and checking the Content-Length. Returns
the HTTP response code.
This module also exports the HTTP::Status constants and procedures.
You can use them when you check the response code from getprint(),
getstore() or mirror(). The constants are:
True if response code indicated that an error occurred.
The module will also export the LWP::UserAgent object as $uaif you
ask for it explicitly.
The user agent created by this module will identify itself as
``LWP::Simple/#.##'' (where ``#.##'' is the libwww-perl version number)
and will initialize its proxy defaults from the environment (by
calling $ua->env_proxy).
Note that if you are using both LWP::Simple and the very popular CGI.pm
module, you may be importing a head function from each module,
producing a warning like ``Prototype mismatch: sub main::head ($) vs
none''. Get around this problem by just not importing LWP::Simple's
head function, like so:
use LWP::Simple qw(!head);
use CGI qw(:standard); # then only CGI.pm defines a head()
perldoc2tree.cgi: /usr/lib/perl5/vendor_perl/5.8.8/LWP/Simple.pm: cannot resolve L in paragraph 71.
perldoc2tree.cgi: /usr/lib/perl5/vendor_perl/5.8.8/LWP/Simple.pm: cannot resolve L in paragraph 71.
perldoc2tree.cgi: /usr/lib/perl5/vendor_perl/5.8.8/LWP/Simple.pm: cannot resolve L in paragraph 71.
perldoc2tree.cgi: /usr/lib/perl5/vendor_perl/5.8.8/LWP/Simple.pm: cannot resolve L in paragraph 71.