egg_server/test/insertSheet.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
383 B
TypeScript

// const URL = "https://egg.imoaix.cn/sheet";
const URL = "http://localhost:3000/sheet"
const res = await fetch(URL, {
method: "POST",
body: JSON.stringify({
api_key: "uwnpzb9hvoft28h",
sheet_token: "shtk48HuiHQOUSTAZ0t0DFplNJc",
type: "insert",
range: "a2YJxa",
values: [["hello", "world"]],
}),
})
console.log(JSON.stringify(await res.json(), null, 2))