I'm trying to use the example here:
http://search.cpan.org/~gaas/libwww-....pm#An_Example
here is the code:
Code:
use LWP::UserAgent;
use LWP::Debug qw(+);
# Create a user agent object
my $ua = LWP::UserAgent->new;
$ua->agent("MyApp/0.1 ");
# Create a request
my $req = HTTP::Request->new(POST => 'http://search.cpan.org/search');