gpt4 book ai didi

javascript - Axios:无法使用基本身份验证调用 API

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:26:31 26 4
gpt4 key购买 nike

我正在尝试通过 axios 在 Vue 中发出 CORS get 请求。到目前为止一切正常,但如果我需要通过基本身份验证进行身份验证,我将无法正常工作。

这是我的代码

getData: function() {
let vm = this; // assign vue instance to vm

axios.get('url', {
withCredentials: true,
auth: {
username: 'name',
password: 'pass'
}
}).then(function(response) {
console.log(response)
}).catch(function(error) {
console.log(error)
})
}

即使我输入了凭据以及正确的 url,我总是得到 401 响应。看起来像这样。

HTTP/1.1 401 Authorization Required
Date: Wed, 01 Feb 2017 16:23:31 GMT
WWW-Authenticate: Basic realm="'Realm'"
Content-Length: 499
Keep-Alive: timeout=15
Connection: Keep-Alive
Content-Type: text/html; charset=iso-8859-1

原始请求看起来像这样

OPTIONS 'url' HTTP/1.1
Host: 'host'
Connection: keep-alive
Pragma: no-cache
Cache-Control: no-cache
Access-Control-Request-Method: GET
Origin: http://localhost:9000
User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_3)
AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.76
Safari/537.36
Access-Control-Request-Headers: authorization
Accept: */*
DNT: 1
Referer: http://localhost:9000/pages/blog_cc/blog_cc.html
Accept-Encoding: gzip, deflate, sdch, br
Accept-Language: de,en;q=0.8

我错过了什么?使用 Postman 和完全相同的凭据,一切都像魅力一样。甚至直接在 Chrome 中。

我看到这个问题已经被问过几次了,但是其他线程上提出的所有答案对我来说都不是解决方案。例如,我无法从节点发出请求。

编辑:我也尝试用 vanilla JS 发出请求,但也无济于事。看来问题出在后端。不过,这是我的代码。

let xml = new XMLHttpRequest();
xml.open('GET', api, true);
xml.setRequestHeader('Authorization', 'Basic: ' + btoa(user + ':' + pass));
xml.send();

最佳答案

我有同样的经历,我的解决方法是使用以下设置来处理与我们设置的 OAuth 服务器的通信:

axios({
headers: { "Content-Type": "application/x-www-form-urlencoded" },
method: "post",
url: REVOKE_URL,
auth: {
username: CLIENT_ID,
password: CLIENT_SECRET
},
data: {
datastuff: actualData
}
});

在数日尝试使用 axios.post 无果而终后,此方法奏效了。

Axios 版本:0.18.0

关于javascript - Axios:无法使用基本身份验证调用 API,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41985042/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com