Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
このスクリプトにプロキシ サポートを追加するにはどうすればよいですか?
use LWP::Simple; $url = "http://stackoverflow.com"; $word = "how to ask"; $content = get $url; if($content =~ m/$word/) { print "Found $word"; }
基礎となる LWP::UserAgent オブジェクトにアクセスし、プロキシを設定します。LWP::Simple は$ua変数をエクスポートするので、それを行うことができます:
$ua
LWP::Simple qw( $ua get ); を使用します。 $ua->proxy( 'http', 'http://myproxy.example.com' ); 私の $content = get( 'http://www.example.com/' );