egg_server/test/sendMsg.ts
zhaoyingbo 6e65581bbf
All checks were successful
Egg CI/CD / build-image (push) Successful in 32s
Egg CI/CD / deploy (push) Successful in 37s
feat: 接入lint 和 husky
2024-07-25 01:48:22 +00:00

16 lines
369 B
TypeScript

// const URL = "https://egg.imoaix.cn/message";
const URL = "http://localhost:3000/message"
const res = await fetch(URL, {
method: "POST",
body: JSON.stringify({
api_key: "uwnpzb9hvoft28h",
receive_id: "zhaoyingbo",
receive_id_type: "user_id",
msg_type: "text",
content: "hello, world!",
}),
})
console.log(JSON.stringify(await res.text()))