in reply to Re: Escape user name and password in LWP proxy call.
in thread Escape user name and password in LWP proxy call.
Thank you for revert.
Below is what I tried to do, but didn't work, yes that was typo, i meant URI::Escape
Is it because i tried escaping IP too, do i really need to escape ip address.
Thank you##proxy authentication $PROXY_USER = uri_escape($PROXY_USER); $PROXY_PASSWD = uri_escape($PROXY_PASSWD); $PROXY_IP = uri_escape($PROXY_IP); my $proxy_url = "${PROXY_USER}:${PROXY_PASSWD}"."\@${PROXY_IP}:${PROXY +_PORT}"; ### oh, just realized, looks like forgot to add "http://" +. here before proxy user that's why it failed, can you just confirm t +he same. $ua->proxy(https => "$proxy_url");
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Escape user name and password in LWP proxy call.
by Anonymous Monk on Oct 14, 2021 at 16:21 UTC | |
by hippo (Archbishop) on Oct 14, 2021 at 16:27 UTC | |
|