proxy-verifier icon indicating copy to clipboard operation
proxy-verifier copied to clipboard

Example of verifying proxy with user and pass

Open Mako-L opened this issue 5 years ago • 1 comments

I don't seem to find any example of how to use it with proxies that require authentication.

Mako-L avatar Aug 20 '20 11:08 Mako-L

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

calvincanas avatar Dec 24 '20 18:12 calvincanas