已通过Windows身份验证在.Net中创建了Web API。在React APP中调用API时,获得401未经授权。 Web API在具有Windows身份验证的浏览器中可以正常工作。
axios.get('http://.../.../user/Data')
.then(function (response) {
console.log(response);
})
.catch(function (error) {
console.log(error);
});```
答案 0 :(得分:0)
使用fetch
设置credentials: include
选项。另外,我认为Access-Control-Allow-Credentials
标头需要在后端设置。
我是前端开发人员,所以我不确定为Windows身份验证配置后端的全部内容。