chore(net-tool): 修改鉴权函数调用方式
All checks were successful
/ release (push) Successful in 1m2s

This commit is contained in:
zhaoyingbo 2024-11-25 10:46:04 +00:00
parent 2cd2beb4e0
commit b141a4c50e
2 changed files with 18 additions and 8 deletions

View File

@ -28,14 +28,12 @@ class LarkService {
appSecret,
requestId,
})
this.drive = new LarkDriveService(() => this.auth.getAppAuth(), requestId)
this.message = new LarkMessageService(
() => this.auth.getAppAuth(),
requestId
)
this.user = new LarkUserService(() => this.auth.getAppAuth(), requestId)
this.sheet = new LarkSheetService(() => this.auth.getAppAuth(), requestId)
this.chat = new LarkChatService(() => this.auth.getAppAuth(), requestId)
const getAppAuth = () => this.auth.getAppAuth()
this.drive = new LarkDriveService(getAppAuth, requestId)
this.message = new LarkMessageService(getAppAuth, requestId)
this.user = new LarkUserService(getAppAuth, requestId)
this.sheet = new LarkSheetService(getAppAuth, requestId)
this.chat = new LarkChatService(getAppAuth, requestId)
this.requestId = requestId
}
}

12
test/lark.ts Normal file
View File

@ -0,0 +1,12 @@
import { LarkService } from "../packages/net-tool/src/index"
const larkService = new LarkService({
appId: "appId",
appSecret: "appSecret",
requestId: "requestId",
})
larkService.user
.code2Login("")
.then((res) => console.log(res))
.catch((err) => console.error(err))