chill117 / proxy-verifier

NodeJS module to check proxies: if functional, anonymity level, tunneling, supported protocols.
MIT License
76 stars 16 forks source link

Proxy Authentication Required #30

Open Nisthar opened 4 years ago

Nisthar commented 4 years ago

my code:

const auth=Buffer.from(`${proxyF[2]}:${proxyF[3]}`).toString('base64')
            proxyObj.auth = `Basic ${auth}`
 ProxyVerifier.testProtocols(proxyObj, function (error, results) {

    ....

});