javascript – 如何使用node.js http.Client来使用和授权http代理

我正在通过代理发送http请求,需要在我的请求中添加用户名和密码.如何正确地将这些值添加到我的选项块?

这是我的代码:

var http = require('http');

var options = {
  port: 8080,
  host: 'my.proxy.net',
  path: '/index',
  headers: {
   Host: "http://example.com"
  }
};


http.get(options, function(res) {
  console.log("StatusCode: " + res.statusCode + " Message: " + res.statusMessage);
});

目前响​​应是StatusCode:307,消息:需要身份验证.

我试图在我的选项中添加用户名和密码,但它不起作用:

var options = {
    port: 8080,
    host: 'my.proxy.net',
    username: 'myusername',
    password: 'mypassword',
    path: '/index',
    headers: {
       Host: "http://example.com"
    }
};

附加信息:
我没有太多关于代理的信息,但在另一种情况下,这种身份验证方法有效:

npm config set proxy http://username:password@my.proxy.net:8080

最佳答案 好的,这适用于我当地的鱿鱼:

var http = require('http');

function buildAuthHeader(user, pass) {
    return 'Basic ' + new Buffer(user + ':' + pass).toString('base64');
}

proxy = 'localhost';
proxy_port = 3128;
host = 'www.example.com';
url = 'http://www.example.com/index.html';
user = 'potato';
pass = 'potato';

var options = {
    port: proxy_port,
    host: proxy,
    path: url,
    headers: {
        Host: host,
       'Proxy-Authorization': buildAuthHeader(user, pass),
    }
};

http.get(options, function(res) {
  console.log("StatusCode: " + res.statusCode + " Message: " + res.statusMessage);
});

情侣笔记:

>完整的URL必须包含在GET行中,而不仅仅是路径,因此它不是/index.html而是http://example.com/index.html
>您还应该在主机头中包含主机,因此您必须正确解析URL

点赞