nodejs中request模块proxy的使用方法

request.post({url:url,proxy:'http://username:password@url:port',oauth:oauth} 

var options = {
        host: url,
        port: port,
        path: requestPath,
headers: {
   'Proxy-Authentication': 'Base ' + new Buffer('username:password').toString('base64')
   }
 };


var reqUrl = request(url,{'proxy':'http://username:password@url:port'});

注意:用户名,密码在url中的写法

你可能感兴趣的:(nodejs)