javascript 如何解决CORS的错误?模式:'无相关'

xu3bshqb  于 2023-08-02  发布在  Java
关注(0)|答案(1)|浏览(82)
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(内部服务器错误)


的数据

b5lpy0ml

b5lpy0ml1#

您无权从未设置适当标头的API获取响应。如果它既不是你的API也不是公共的,你只能尝试一些黑客与CORS代理从谷歌搜索

相关问题