请求洛谷API怎么没反应……
  • 板块灌水区
  • 楼主细数繁星
  • 当前回复16
  • 已保存回复16
  • 发布时间2023/4/20 19:18
  • 上次更新2023/10/23 17:58:32
查看原帖
请求洛谷API怎么没反应……
824363
细数繁星楼主2023/4/20 19:18
async function t()
{

await fetch("http://www.luogu.com.cn/api/chat/new", {
  headers: [
    ["content-type", "application/json"],
    ["referer", "http://www.luogu.com.cn/"],
    ["x-csrf-token", "xxx"],
  ],
  body: JSON.stringify({
    user: 784370,
    content: "LUOGU API 测试,这条信息不用回复。",
  }),
  method: "POST",
});

}
t();
2023/4/20 19:18
加载中...