如何进行React App Windows身份验证

时间:2019-04-19 16:09:07

标签: .net reactjs axios windows-authentication

已通过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);
    });```

1 个答案:

答案 0 :(得分:0)

使用fetch设置credentials: include选项。另外,我认为Access-Control-Allow-Credentials标头需要在后端设置。

我是前端开发人员,所以我不确定为Windows身份验证配置后端的全部内容。