http://www.perlmonks.org?node_id=921463


in reply to Re: Remote web form post
in thread Remote web form post

is missing the correct operator between POST and the URL string

Sure its not :)

use DDS; use HTTP::Request::Common qw(POST); Dump( POST 'http://example.com', [ qw' username joe password joe ' ] ) +; __END__ $HTTP_Request1 = bless( { _content => 'username=joe&password=joe', _headers => bless( { "content-length" => 25, "content-type" => 'application/x-ww +w-form-urlencoded' }, 'HTTP::Headers' ), _method => 'POST', _uri => \do { my $v = 'http://example.com' } }, 'HTTP::Request' ); bless( $HTTP_Request1->{_uri}, 'URI::http' );

I agree with the rest of your words

Replies are listed 'Best First'.
Re^3: Remote web form post
by linuxer (Curate) on Aug 21, 2011 at 09:59 UTC

    Ah, thank you for the hint. I tested with HTTP::Request, which I prefer...

    I thought of POST being a bareword and not an exported function from HTTP::Request::Common.

    Well, now I see, I don't like that style... ;-)