我如何发送Id and password
意味着basic authentication
到下面的代码。我的意思是我需要在下面的代码中放置id/pass?我的API需要基本的身份验证
const https = require('https');
https.get('https://rws322s213.infosys.com/AIAMFG/rest/v1/describe', (resp) => {
let data = '';
resp.on('data', (chunk) => {
data += chunk;
});
resp.on('end', () => {
console.log(JSON.parse(data).explanation);
});
}).on("error", (err) => {
console.log("Error: " + err.message);
});
2条答案
按热度按时间6mzjoqzu1#
为了请求Basic authentication,客户端向服务器传递一个http Authorization header。
因此,您的问题是“如何通过
https.get()
请求传递头文件?”options.headers{}
,您可以这样放置它:rekjcdws2#