我需要使用 NTLM TLS 1.2 身份验证对 Api 进行 get 请求调用。我的端点适用于 C# 和 insomnia 应用程序。但我想用 node.js 和 postman 来实现
有什么办法可以做到这一点?
我已经使用了所有可用的库。Axios, https-request .. 等等.. 但没有任何效果我得到错误 401 未经授权...每次
我的代码-->
const axios = require('axios');
axios.post('url', {
params: {
username: 'username',
password: 'password',
domain: ''
},
headers: {
CultureName: "GR",
ServicesVersion: "1"
}
})
.then(response => {
console.log(response);
})
.catch(error => {
console.log(error);
});