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