1
2
3
4
$ perl -E'use HTTP::Request::Common 5.824 qw(POST);say "ok"'
ok
$ perl -E'use HTTP::Request::Common 6.824 qw(POST);say "ok"'
HTTP::Request::Common version 6.824 required--this is only version 6.04 at -e line 1.
1 2 3 4 5 6 7 8
$response = $formular_seite->post( $base_url.'/'.$form_destination, Content_Type => 'form-data', Content => [ foo => 'xyz', bar => '123', ], );
2014-09-09T05:28:21 biancaIch nutze die Post Methode von Mech. Nachher mach ich mal ein kleines Script, womit man das nachstellen kann.