Thread Was sind das für Daten?
(12 answers)
Opened by bianca at 2014-05-29 13:10
Was wird denn bei:
Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 12 13 !/usr/bin/perl use 5.010; use strict; use warnings; use WWW::Mechanize; my $mech = WWW::Mechanize->new( cookie_jar => {}, ); my $response = $mech->get('https://www.dab-bank.de/'); my $header = $response->headers->as_string; say $header; exit; |