我试图使用 axios 用 bearer token 发出一个帖子请求,但我一直收到错误 401:"Authentication credentials were not provided"。
以下是我的请求代码。
当我在postman上发送请求时,它可以工作。
axios({
method: 'post',
url: 'https://websiteurl..',
header: {
Authorization: 'Bearer asdf123'
},
data: {
"message": "hello"
}
})
.then()
.catch(function(err) {
console.log(err)
})
"headers",而不是 "header "吧。你打错了。