Thread LWP::UserAgent und Cookies?: wie geht das (9 answers)
Opened by Gast at 2005-12-30 15:45

renee
 2005-12-31 08:04
#29592 #29592
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
Fuer so etwas eignet sich wohl besser CPAN:WWW::Mechanize

Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use strict;
use warnings;
use HTTP::Cookies;
use WWW::Mechanize;

my $cookie_jar = HTTP::Cookies->new();
my $your_url = 'http://url_to_loginpage.tld';
my $mech = WWW::Mechanize->new(-cookie_jar => $cookie_jar);

$mech->get( $your_url );
$mech->submit_form(
form_number => 1, # wievieltes Formular ist das Login-Form
fields => {
username => 'mungo',
password => 'lost-and-alone',
}
);
print $mech->content(); #sollte von eingeloggter Seite sein...
OTRS-Erweiterungen (http://feature-addons.de/)
Frankfurt Perlmongers (http://frankfurt.pm/)
--

Unterlagen OTRS-Workshop 2012: http://otrs.perl-services.de/workshop.html
Perl-Entwicklung: http://perl-services.de/

View full thread LWP::UserAgent und Cookies?: wie geht das