proxy-verifier
proxy-verifier copied to clipboard
Example of verifying proxy with user and pass
I don't seem to find any example of how to use it with proxies that require authentication.
You need to do some coding for auth because it is not yet done for you. add another property to proxy object named auth then the value is 'Basic '+ combine user and password with a colon(e.g user:pass) then encode it using base64.
Example is: 'Basic YWxhZGRpbjpvcGVuc2VzYW1l'-- reference https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Proxy-Authorization