This commit is contained in:
parent
2cd2beb4e0
commit
b141a4c50e
@ -28,14 +28,12 @@ class LarkService {
|
|||||||
appSecret,
|
appSecret,
|
||||||
requestId,
|
requestId,
|
||||||
})
|
})
|
||||||
this.drive = new LarkDriveService(() => this.auth.getAppAuth(), requestId)
|
const getAppAuth = () => this.auth.getAppAuth()
|
||||||
this.message = new LarkMessageService(
|
this.drive = new LarkDriveService(getAppAuth, requestId)
|
||||||
() => this.auth.getAppAuth(),
|
this.message = new LarkMessageService(getAppAuth, requestId)
|
||||||
requestId
|
this.user = new LarkUserService(getAppAuth, requestId)
|
||||||
)
|
this.sheet = new LarkSheetService(getAppAuth, requestId)
|
||||||
this.user = new LarkUserService(() => this.auth.getAppAuth(), requestId)
|
this.chat = new LarkChatService(getAppAuth, requestId)
|
||||||
this.sheet = new LarkSheetService(() => this.auth.getAppAuth(), requestId)
|
|
||||||
this.chat = new LarkChatService(() => this.auth.getAppAuth(), requestId)
|
|
||||||
this.requestId = requestId
|
this.requestId = requestId
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
12
test/lark.ts
Normal file
12
test/lark.ts
Normal 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))
|
Loading…
x
Reference in New Issue
Block a user