Thread Probleme mit WWW::Mechanize und https
(19 answers)
Opened by bob.george at 2014-11-20 15:05 Code (perl): (dl
)
1 2 3 4 5 use strict; use warnings; use 5.010; use WWW::Mechanize; my $mech = WWW::Mechanize->new( autocheck => 1 ); $mech->get( "https://www.example.com" ); print $mech->content; |