in reply to Re^2: Mechanize https proxy not working
in thread Mechanize https proxy not working

I don't know what is causing your problem. I'd use a different module to get the https link. Something like IO::All::HTTPS
#!/usr/bin/perl use strict; use warnings; use IO::All; my $content < io('https://www.guardiananytime.com'); print $content, "\n";

Replies are listed 'Best First'.
Re^4: Mechanize https proxy not working
by vishnu787 (Initiate) on Mar 10, 2010 at 06:21 UTC
    comes back with *Can't find a class for method 'https' at test1.pl line 7*