gpt4 book ai didi

amazon-web-services - aws cognito && apiGateway 返回状态 401

转载 作者:行者123 更新时间:2023-12-04 03:09:08 24 4
gpt4 key购买 nike

我在我的 api 的响应 header 中正确配置了 cors。

当我使用经过验证的 token 通过 postman 测试我的 api 时附加在 header ('Authorization')中,它返回 200。

我检查了我的前端获取代码以请求该api,似乎没有错误或故障。

怎么会这样?有没有人和我现在一样遭受同样的痛苦。

添加:

我的前端获取代码如下所示。

export const getDoc = async (docId, token) => {
const path = `${apiGateway.URL}`;
const body = {
docId: docId
};
const headers = {
Authorization: token,
'Content-Type': 'application/json'

};
const result = await fetch(path, {
body,
headers,
});
if (result.status !== 200) {
throw new Error('failed to get doc');
}
return result.json();
};

最佳答案

您应该只在“ token 来源”字段中输入“授权”,而不是“method.request.headers.Authorization”。否则,您将收到 401 错误。

关于amazon-web-services - aws cognito && apiGateway 返回状态 401,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46701016/

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