Thread von LWP nach WWW::Mechanize (9 answers)
Opened by Gast at 2010-02-24 09:17

Gast Gast
 2010-02-25 11:35
#133662 #133662
Wollte mich am Ende des Threads mit einem Gedicht bedanken.

Das scheint zu funktionieren - bis auf das "format => text", was wirkungslos bleibt.

Code (perl): (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env perl
use strict;
use warnings;
use WWW::Mechanize;

my $start_url = 'start_url';
my $loginData = 'loginData';
my $loginUrl = 'loginUrl';

my $mech = WWW::Mechanize->new( show_progress => 1 );

my $req = $mech->post( $loginUrl, "Content-type" => 'application/x-www-form-urlencoded', "Referer" => $start_url, "Content" => $loginData  );
print $req->content( format => 'text' );

View full thread von LWP nach WWW::Mechanize