Tagged Questions
4
votes
1answer
209 views
How do I force LWP to use Crypt::SSLeay for HTTPS requests?
My symptom is that I cannot use a proxy with HTTPS requests with LWP. This seems to be a common problem, and the hints on Google and even here all suggest a work-around for setting the HTTPS_PROXY ...
1
vote
1answer
722 views
How can I handle proxy servers with LWP::Simple?
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";
}
0
votes
0answers
106 views
How to reliably get outgoing masking of IP address?
How can I quickly and reliably mask my outgoing IP for doing many web requests?
Tor is too slow. It takes 10x longer.
Tor Tunnel did not work at all for me ...
0
votes
0answers
195 views
how to get remote server IP through LWP (with proxy)
we can use HTTP::Response $resp->header('Client-Peer') to get remote server IP (at least the one we connected to?), example code as below:
use LWP::UserAgent;
my $ua = LWP::UserAgent->new;
my ...