如何使用 LWP::Simple 处理代理服务器?
如何向该脚本添加代理支持?
use LWP::Simple;
$url = "http://stackoverflow.com";
$word = "how to ask";
$content = get $url;
if($content =~ m/$word/)
{
print "Found $word";
}
How can I add proxy support to this script?
use LWP::Simple;
$url = "http://stackoverflow.com";
$word = "how to ask";
$content = get $url;
if($content =~ m/$word/)
{
print "Found $word";
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
访问底层 LWP::UserAgent 对象并设置代理。 LWP::Simple 导出
$ua
变量,以便您可以执行以下操作:Access the underlying LWP::UserAgent object and set the proxy. LWP::Simple exports the
$ua
variable so you can do that: