我正在尝试使用基本身份验证向 Web url 发出获取请求。但它因连接问题而失败。
注意:当我使用“请求”库而不是“得到”时它可以工作
我在这里想念什么?
const got = require('got');
(async () => {
try {
const res = await got(
{
url: 'https://httpbin.org/anything',
headers: {
Accept: 'application/json'
//Authorization: 'Basic abcjghgh8****'
}
})
console.log('statusCode:', res.statusCode);
console.log('body:', res.body);
} catch (error) {
console.log('error:', error);
}
})();
输出:
图书馆