egg_server/test/archive/batchUser.ts
zhaoyingbo 9545670a51
All checks were successful
Egg Server CI/CD / build-image (push) Successful in 45s
Egg Server CI/CD / refresh-image (push) Successful in 12s
Egg Server CI/CD / fast-deploy (push) Successful in 2s
feat: 支持清洗历史数据
2024-10-15 01:20:21 +00:00

16 lines
380 B
TypeScript

const localUrl = "http://localhost:3000/micro_app/batch_user"
// const prodUrl = "https://egg.imoaix.cn/micro_app/batch_user";
const res = await fetch(localUrl, {
method: "POST",
headers: {
"Content-Type": "application/json",
},
body: JSON.stringify({
user_ids: ["zhaoyingbo"],
user_id_type: "user_id",
}),
})
console.log(JSON.stringify(await res.json()))