in reply to [Resolved]Proxy link rotation
use LWP::UserAgent::Proxified; my $ua = LWP::UserAgent::Proxified->new( proxylist => [ ['http', 'https'] => 'http://10.0.0.1:1080', ['http', 'https'] => 'http://10.0.0.2:1080' ], proxyrand => 1, # choose random proxy for each request # other lwp options goes here );
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Proxy link rotation
by kazak (Beadle) on Jan 27, 2012 at 21:14 UTC | |
by OlegG (Monk) on Jan 28, 2012 at 04:43 UTC |