Beefy Boxes and Bandwidth Generously Provided by pair Networks
The stupid question is the question not asked
 
PerlMonks  

Re^2: Remote web form post

by Anonymous Monk
on Aug 21, 2011 at 01:19 UTC ( [id://921463]=note: print w/replies, xml ) Need Help??


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... ;-)

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://921463]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others goofing around in the Monastery: (7)
As of 2024-04-19 13:05 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found