On Tue, May 14, 2013 at 1:04 AM, Krylov Ivan <[email protected]> wrote: > Tom Browder wrote: >> >> my $response = $browser->post( >> >> "https://host.org/cgi-bin/mailman/$oper/$list", >> email => $enc_email, >> fullname => $enc_name, >> ); > > > LWP::UserAgent documentation says on the ->post() method: >> >> This method will use the POST() function from >> "HTTP::Request::Common" > >> to build the request. See HTTP::Request::Common for a >> details on how to pass form content and >> other advanced features. > > The request form you needed is POST($url, {field => "value"}), otherwise you > will create HTTP headers, not POST data.
I made two errors pointed out by Ivan: (1) I dumbly forgot to wrap the hash args in curly braces and (2) I should NOT have encoded the field values. With those two corrections all works well! Thanks very much, Ivan. Best regards, -Tom ------------------------------------------------------ Mailman-Users mailing list [email protected] http://mail.python.org/mailman/listinfo/mailman-users Mailman FAQ: http://wiki.list.org/x/AgA3 Security Policy: http://wiki.list.org/x/QIA9 Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/ Unsubscribe: http://mail.python.org/mailman/options/mailman-users/archive%40jab.org
