执行带有axios的GET请求时出现401错误

问题描述 投票:-3回答:1

我可以在浏览器中查看我的JSON数据,但不能在我的控制台中查看。我对axios并不是很熟悉,但我认为问题在于url(参见下面的代码片段)。那,或者我在axios.get {内遗漏了一些东西。

有什么想法吗?

server.js:

axios.get("https://handshake.[redacted].com/HandshakeWebServices/Odata/Odata.ashx/HS[redacted]?hsf=@UserName=%27[redacted]%27&$select=PreferredName,Initials,JobTitle,Office", {
    crossDomain: true,
    method: "GET",
    credentials: "include",
    mode: "no-cors",
    headers: {
        "Accept": "application/json; odata=verbose"
    }
})
.then(function(res){
  console.log(res.data);
})
.catch(function(e){
  console.log(e);
})

console:

GET https://handshake.[redacted].com/HandshakeWebServices/Odata/Odata.ashx/HS[redacted]?hsf=@UserName=[redacted]&$select=PreferredName...etc 401 (Unauthorized)

server.js?1d69:18 Error: Request failed with status code 401
    at createError (createError.js?2d83:16)
    at settle (settle.js?467f:18)
    at XMLHttpRequest.handleLoad (xhr.js?b50d:77)
javascript get axios http-status-code-401
1个回答
1
投票

该网站正在返回401,这意味着您无权访问该URL。

通常,这意味着您需要发送凭据。

现在,你已经说过credentials: "include",,但这是fetch认可的财产,而不是axiosaxios等价物是withCredentials: true,所以设置相反。


你还说mode: "no-cors",fetch认可的另一个属性,而不是axios。无论如何你不想要它。发送凭据需要通过CORS许可,因此拒绝CORS,拒绝获得发送凭据的权限的可能性。

删除该属性。

© www.soinside.com 2019 - 2024. All rights reserved.