我还没有看到使用 Mechanize 支持 NTLM 的示例。有谁知道我们如何通过 Mechanize 使用 NTLM 库?如果没有,LWP 能完成这项工作吗?
my $mech = WWW::Mechanize->new( 'keepalive' => 1 );
my $url = "http://URL/I/NEED/TO/ACCESS"; <---Requires NTLM authorization
my $username = "username";
my $password = "password";
$mech->credentials($username, $password);
$mech->get($url);