Thread Datei per https holen und speichern: Datei per https holen und speichern (10 answers)
Opened by perl-anfaenger at 2007-02-01 16:47

Stevee
 2007-02-06 16:05
#73935 #73935
User since
2006-10-17
5 Artikel
BenutzerIn
[default_avatar]
Muss für https nicht auch noch folgendes Modul geladen werden?
use Crypt::SSLeay;

Bei mir klapps folgendermaßen:
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/perl

use LWP::UserAgent;
use Crypt::SSLeay;

$ua = LWP::UserAgent->new;
$req = HTTP::Request->new(GET => 'https://192.168.1.1/laber.html');
$req->authorization_basic('login-name', 'geheim123');
$result = $ua->request($req);

# check the outcome

if ($result->is_success)
{
$x = $result->decoded_content;
print $x;
}
else
{
print "Error: " . $result->status_line . "\n";
}
\n\n

<!--EDIT|Stevee|1170771790-->

View full thread Datei per https holen und speichern: Datei per https holen und speichern