in reply to Mechanize not working with HTTPS
also see Downloading large Binary files from https protocol using WWW::Mechanize in Windows OS#untested use LWP::UserAgent; use WWW::Mechanize; my $agent = WWW::Mechanize->new(); my $ua = LWP::UserAgent->new; $ua->protocols_allowed(['https']); $agent->get('https://xxxxxxxxxxx.com/file');
|
|---|