简体   繁体   中英

How to authenticate a request with htpasswd in Node.js

I am trying to fetch a rss feed from our staging site and at present it has htpasswd security on it.

I have tied using the format:

http://username:password@url.com

This works on the browser but when I try to do this with nodejs it fails.

Could you tell me what is the right way to do this with node.js.

app.js

var request = require('request');

request.get('http://url.com', callback).auth('username', 'password', false);

function callback(err, response, body) {
  console.log(body);
}

terminal:

npm install request
node app.js

document: https://github.com/mikeal/request

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM