自动识别Windows Web代理

时间:2014-01-19 18:26:19

标签: windows perl lwp-useragent

我正在使用LWP抓取特定网站。目前我使用类似下面的代码:

 my $ua = LWP::UserAgent->new;
  $ua->timeout(10);
 $ua->proxy(['http'],$proxy);

  my $response = $ua->get($url);

  if ($response->is_success) {
      print $response->decoded_content;   }
  else {
      die $response->status_line;
  }

我想知道是否有一个选项来识别我的IE使用的代理并将其用作$ proxy?

0 个答案:

没有答案