2

HTTP::ProxyPAC モジュールを使用して、pac ファイルからプロキシを取得します。しかし、私はエラーが発生します

「JavaScript モジュールも JS モジュールも利用できないようです」

続行する方法を教えてください。ここに私のコードがあります

use strict;
use warnings;
use LWP::UserAgent;
use HTTP::ProxyPAC;

my $ua = LWP::UserAgent->new( keep_alive => 1);
my $pac = HTTP::ProxyPAC->new( URI->new   ("http://pacfilelocation:8080/pac_file.pac") );
my $res = $pac->find_proxy("https://www.google.com");


if ($res->direct) {
print "No Proxy Needed\n";
} elsif ($res->proxy) {
print "Proxy is: " . $res->proxy . "\n";
$ENV{HTTPS_PROXY} = $res->proxy;
$ENV{HTTP_PROXY} = $res->proxy;
$ua->env_proxy;
}
4

1 に答える 1