const result = await fetch(https://example.com', {
method: 'POST',
mode: 'no-cors',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({"username": "Jochan","countFollowers": 60001}),
});
字符串
我尝试向第三方API发送请求,出现错误,如何解决?
错误代码:
POST https://example.com net::ERR_ABORTED 500(内部服务器错误)
的数据
1条答案
按热度按时间b5lpy0ml1#
您无权从未设置适当标头的API获取响应。如果它既不是你的API也不是公共的,你只能尝试一些黑客与CORS代理从谷歌搜索