16 lines
380 B
TypeScript
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()))
|