Tengo el siguiente código:
#!usr/bin/perl
#ppm install http://www.bribes.org/perl/ppm/Crypt-SSLeay.ppd
use LWP::UserAgent;
use Crypt::SSLeay;
my $nave = LWP::UserAgent->new;
$nave->agent("Mozilla/5.0 (Windows; U; Windows NT 5.1; nl; rv:1.8.1.12) Gecko/20080201Firefox/2.0.0.12");
$nave->timeout(5);
my $code = tomar("https://anonfiles.com/api?plain",{"file"=>"test.txt"});
print $code;
sub toma {
return $nave->get($_)->content;
}
sub tomar {
my ( $web, $var ) = @_;
return $nave->post( $web, )->content;
}
#The End ?
Y me devuelve esto :
No input file ...