From b141a4c50e10edd22b592a6d18a8835bcd30a2e2 Mon Sep 17 00:00:00 2001 From: zhaoyingbo Date: Mon, 25 Nov 2024 10:46:04 +0000 Subject: [PATCH] =?UTF-8?q?chore(net-tool):=20=E4=BF=AE=E6=94=B9=E9=89=B4?= =?UTF-8?q?=E6=9D=83=E5=87=BD=E6=95=B0=E8=B0=83=E7=94=A8=E6=96=B9=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/net-tool/src/larkServer/index.ts | 14 ++++++-------- test/lark.ts | 12 ++++++++++++ 2 files changed, 18 insertions(+), 8 deletions(-) create mode 100644 test/lark.ts diff --git a/packages/net-tool/src/larkServer/index.ts b/packages/net-tool/src/larkServer/index.ts index 779a7bb..fa3be17 100644 --- a/packages/net-tool/src/larkServer/index.ts +++ b/packages/net-tool/src/larkServer/index.ts @@ -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 } } diff --git a/test/lark.ts b/test/lark.ts new file mode 100644 index 0000000..dd01754 --- /dev/null +++ b/test/lark.ts @@ -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))