in reply to Re^2: proxy problwm LWP
in thread proxy problwm LWP

I suggest to use strict; and use warnings; and then have the "proxy" line after the "new" line for the user agent:

my $ua = LWP::UserAgent->new(); $ua->proxy(['http', 'ftp'], 'http://proxy.sn.no:8001/');

Replies are listed 'Best First'.
Re^4: proxy problwm LWP
by reciter (Novice) on May 18, 2015 at 11:37 UTC
    hello

    will you see for one more time? its still not working

    now the script is :

    use strict; use warnings; use LWP::UserAgent; my $ua = LWP::UserAgent->new(); $ua->proxy(['http', 'ftp'], 'http://192.168.64.1:3128/'); my $req = HTTP::Request->new('GET','https://twitter.com/?lang=en'); my $res = $ua->request($req); print $res->status_line;
    and on run shows error message

    500 Can't connect to twitter.com:443 (Bad hostname)

    thanks

      https is not http:

      $ua->proxy(['http', 'ftp'], 'http://192.168.64.1:3128/');
      my $req = HTTP::Request->new('GET','https://twitter.com/?lang=en');
        actually I wrote https as the message is same when thereis http://twitter.com in http request and I thought because site address is wrong that is why it is giving message

        even now changing https to http showing the same error message "500 can't connect___:443(bad hostname)" and another time it was giving error message "501 that https is not installed" so after installing I changed the address to https