gpt4 book ai didi

Axios 帖子,缺少授权类型

转载 作者:行者123 更新时间:2023-12-03 20:27:51 27 4
gpt4 key购买 nike

获取数据:{ error: 'invalid_request', error_description: 'Missing grant type' } }
Content-Type 是正确的,不知道哪里错了

return axiosInstance({
method: 'post',
url: axiosInstance.defaults.baseURL + '/oauth/token',
data: {
"grant_type": "vapi_key",
key: api_key
},
headers: {
'Content-Type': 'application/x-www-form-urlencoded'
}
})

编辑:这是通过 NodeJS 调用的

最佳答案

这是一个 open issue关于这件事。试试这个 solution , 这建议对数据进行字符串化(您可以使用 qs 包):

import qs from 'qs';

return axiosInstance({
method: 'post',
url: axiosInstance.defaults.baseURL + '/oauth/token',
data: {
"grant_type": "vapi_key",
key: api_key
},
data: qs.stringify({
"grant_type": "vapi_key",
key: api_key
}),
headers: {
'Content-Type': 'application/x-www-form-urlencoded'
}
})

关于Axios 帖子,缺少授权类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56975695/

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