Thread Einloggen und datei downloaden via http: Einloggen und datei downloaden via http (3 answers)
Opened by Rafael at 2006-10-19 13:12

Rafael
 2006-10-19 13:12
#71012 #71012
User since
2006-07-26
22 Artikel
BenutzerIn
[default_avatar]
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require LWP::UserAgent;

my $ua = LWP::UserAgent->new;
$ua->timeout(10);
$ua->env_proxy;

my $response = $ua->get('http://www.swisswebcams.ch/export/xml_slf/xml_slf.xml');

if ($response->is_success) {
$ua->mirror('http://www.swisswebcams.ch/export/xml_slf/xml_slf.xml', 'xml_slf.xml');
}
else {
die $response->status_line;
}

soweit bin ich gekommen.
Leider muss ich mich einloggen. Wie kann man sich mit perl einloggen???

danke
Rafael\n\n

<!--EDIT|renee|1161249555-->

View full thread Einloggen und datei downloaden via http: Einloggen und datei downloaden via http