in reply to WWW::Mechanize with HTTPS
ppm install http://theoryx5.uwinnipeg.ca/ppms/Crypt-SSLeay.ppd
Note that setting a web proxy is dependant on the method. For HTTPS we set an environment variable:
and for HTTP we call the ->proxy method:$ENV{HTTPS_PROXY} = 'http://proxy.mycompany.com:8080';
$ua->proxy(['http'],'http://proxy.mycompany.com:8080/');
|
|---|