logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

IO::All::LWP - Extends IO::All to HTTP URLs

Authors

       Ivan Tubert-Brohman <itub@cpan.org> and Brian Ingerson <ingy@cpan.org>

Description

       This module extends IO::All for dealing with HTTP URLs.  Note that you don't need to use it explicitly,
       as it is autoloaded by IO::All whenever it sees something that looks like an HTTP URL.

       The SYNOPSIS shows some simple typical examples, but there are many other interesting combinations with
       other IO::All features! For example, you can get an HTTP URL and write the content to a socket, or to an
       FTP URL, of to a DBM file.

Methods

       This is a subclass of IO::All::LWP. The only new method is "http", which can be used to create a blank
       IO::All::HTTP object; or it can also take an HTTP URL as a parameter. Note that in most cases it is
       simpler just to call io('http://example.com'), which calls the "http" method automatically.

Name

       IO::All::LWP - Extends IO::All to HTTP URLs

Operator Overloading

       The same operators from IO::All may be used. < GETs an HTTP URL; > PUTs to an HTTP URL.

See Also

       IO::All, IO::All::LWP, LWP.

Synopsis

           use IO::All;

           $content < io('http://example.org');             # GET webpage into scalar
           io('http://example.org') > io('index.html');     # GET to file
           "hello\n" > io('http://example.org/index.html'); # PUT webpage

           # two ways of getting a page with a password:
           $content < io('http://me:secret@example.org');
           $content < io('http://example.org')->user('me')->password('secret');

See Also