GithubHelp home page GithubHelp logo

Comments (11)

TooTallNate avatar TooTallNate commented on August 21, 2024 50

Do one of these:

In the URI

var proxy = new HttpsProxyAgent('https://username:[email protected]');

Set the auth option

var proxyOpts = url.parse('https://your-proxy.com');
proxyOpts.auth = 'username:password';
var proxy = new HttpsProxyAgent(proxyOpts);

Set the HTTP header manually

var proxyOpts = url.parse('https://your-proxy.com');
proxyOpts.headers = {
  'Proxy-Authentication': 'Basic ' + new Buffer('username:password').toString('base64')
};
var proxy = new HttpsProxyAgent(proxyOpts);

from proxy-agents.

okv avatar okv commented on August 21, 2024 12

Hi, there.
It would be nice to see that at readme page)

from proxy-agents.

alii avatar alii commented on August 21, 2024 5

Bump :) Would be great on the readme

from proxy-agents.

axe312ger avatar axe312ger commented on August 21, 2024 2

Yes please, add this to the readme/docs

@TooTallNate :)

from proxy-agents.

BlueCannonBall avatar BlueCannonBall commented on August 21, 2024 2

Do one of these:

In the URI

var proxy = new HttpsProxyAgent('https://username:[email protected]');

Set the auth option

var proxyOpts = url.parse('https://your-proxy.com');
proxyOpts.auth = 'username:password';
var proxy = new HttpsProxyAgent(proxyOpts);

Set the HTTP header manually

var proxyOpts = url.parse('https://your-proxy.com');
proxyOpts.headers = {
  'Proxy-Authentication': 'Basic ' + new Buffer('username:password').toString('base64')
};
var proxy = new HttpsProxyAgent(proxyOpts);

The header is called Proxy-Authorization not Proxy-Authentication.

from proxy-agents.

fbx31 avatar fbx31 commented on August 21, 2024 1

Hi, in my company and using HttpsProxyAgent library, only the first one is working properly, aka, URI, the 2 others failed to authenticate.

from proxy-agents.

agarioBotDev avatar agarioBotDev commented on August 21, 2024

thanks !

from proxy-agents.

DuBistKomisch avatar DuBistKomisch commented on August 21, 2024

👍 worth mentioning, assumed the options listed would be exhaustive, so had to come digging here to confirm auth works.

from proxy-agents.

jfrenl avatar jfrenl commented on August 21, 2024

How to make it that it could use a txt file.

from proxy-agents.

StreetStrider avatar StreetStrider commented on August 21, 2024

It would be nice to have this information in the readme. It would be easier to search for password on package's readme page and repo's readme page. The same is already true for socks-proxy-agent package.

from proxy-agents.

timfong888 avatar timfong888 commented on August 21, 2024

I am getting an openssl error, but not sure if it is due to my proxy service provider, smartproxy:

Error in audio stream for JdUVIwuNy_c: [Error: C037E8F4D43E0000:error:0A00010B:SSL routines:ssl3_get_record:wrong version number:../deps/openssl/openssl/ssl/record/ssl3_record.c:358:

from proxy-agents.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.