Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 518 Bytes

README.md

File metadata and controls

19 lines (13 loc) · 518 Bytes

lark go client

An unofficial Lark SDK that contains some commonly used APIs. It also includes some useful tools, such as converting Lark docx to markdown.

Basic Usage

appID, appSecret := "", ""
larkService := lark.NewService(appID, appSecret, time.Second*5)

// send msg
larkService.SendMsgByOpenID("openID", lark.NewTextMsg("hello"))

References