The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

LWP::Simple::Cookies - adds cookie support to LWP::Simple

SYNOPSIS

 use LWP::Simple;
 use LWP::Simple::Cookies ( autosave => 1,
                            file => "$ENV{'HOME'}/lwp_cookies.dat" );

 # Cookies are now used.
 get( ... );

DESCRIPTION

This module alters the operation of LWP::Simple so that it keeps track of any cookies presented by the server. Any import options are passed directly to HTTP::Cookies->new.

CAVEAT

You are allowed to neglect to load the LWP::Simple module but be aware that doing this prevents all of LWP::Simple's functions from being imported into your code. Use of this module as in the example mostly closely mirrors a normal LWP::Simple experience.

SEE ALSO

LWP::Simple, HTTP::Cookies

AUTHOR

Joshua b. Jore <jjore@cpan.org>