in reply to LWP and POST bareword
$req = HTTP::Request->new('POST', $url, $header); [download]
or let the fat comma do it for you:
$req = HTTP::Request->new(POST => $url, $header); [download]