27 lines
655 B
TypeScript
27 lines
655 B
TypeScript
import { LarkService } from "../../services"
|
|
|
|
const service = new LarkService("egg", "")
|
|
|
|
const {
|
|
data: {
|
|
file: { token: fileToken },
|
|
},
|
|
} = await service.drive.copyFile(
|
|
"D6ETfzaU9lN08adVDz3kjLey4Bx",
|
|
"bask4drDOy7zc3nDVyZb5RYDzOe",
|
|
"xxx 项目 KV管理器",
|
|
"bitable"
|
|
)
|
|
|
|
const { data: tableList } = await service.sheet.getTables(fileToken)
|
|
|
|
const tableId = tableList[0].table_id
|
|
|
|
const { data: viewList } = await service.sheet.getViews(fileToken, tableId)
|
|
|
|
const viewId = viewList[0].view_id
|
|
|
|
console.log(fileToken, tableId, viewId)
|
|
|
|
// https://xiaomi.f.mioffice.cn/base/bask4IvKT61xCvTUxIkcMaWoiYf?table=tblghpLxu1pAdVOD&view=vewEpqn4oM
|