你好,开发者
这是一个稳定的前端跨域请求代理。

integration_instructions 使用方法 (Integration)

适用于浏览器环境中因 CORS 限制而无法直接访问的 API。 通过请求转发与响应头兼容处理,提高前端请求成功率。

JavaScript content_copy Copy

const proxy = "https://corslite.msls1441.com/";
const target = "https://api.music.com/data";

fetch(proxy + target)
  .then(res => res.json())
  .then(data => console.log(data));
      
send