You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm having trouble getting caw to work with got, and I'm trying to figure out whether the issue is because of the proxy itself or because of how I'm configuring caw. If my proxy IP is something like 1.2.3.4 and port is 555 and it's an HTTPS proxy, should the string argument be exactly https://1.2.3.4:555, or does it expect it in a different format?
The text was updated successfully, but these errors were encountered:
You have to set protocol: https if you're accessing a HTTPS page. Otherwise it looks fine. If you don't set the proxy, it'll try to get it from environment flags.
So when accessing an HTTPS page, should it be like caw('https://1.2.3.4:555', {protocol: 'https'})? So https in both places, the proxy string as well as the protocol value?
I'm having trouble getting
caw
to work withgot
, and I'm trying to figure out whether the issue is because of the proxy itself or because of how I'm configuringcaw
. If my proxy IP is something like1.2.3.4
and port is555
and it's anHTTPS
proxy, should the string argument be exactlyhttps://1.2.3.4:555
, or does it expect it in a different format?The text was updated successfully, but these errors were encountered: