gpt4 book ai didi

reactjs - 获取 api post 调用在 React js 中返回 403 禁止错误,但在 postman 中工作的 URL 相同

转载 作者:行者123 更新时间:2023-12-03 13:43:06 26 4
gpt4 key购买 nike

下面的代码不起作用并返回 403 禁止,但相同的 url 给出了正确的响应 postman 工具。

fetch('https://example.com/', {
method: 'POST',
headers: {'Content-Type': 'application/json', },
body:JSON.stringify(sampledata),
}).then(result => console.log('success====:', result))
.catch(error => console.log('error============:', error));

最佳答案

您需要将凭据:“include”添加到您的请求中。

fetch('https://example.com/', {
credentials: 'include',
method: 'POST',
headers: {'Content-Type': 'application/json', },
body: JSON.stringify(sampledata),

}).then(result => console.log('success====:', result))
.catch(error => console.log('error============:', error));

关于reactjs - 获取 api post 调用在 React js 中返回 403 禁止错误,但在 postman 中工作的 URL 相同,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45576200/

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