Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zzzzer91/lark-go
An unofficial Lark(飞书) SDK that contains some commonly used APIs.
https://github.com/zzzzer91/lark-go
Last synced: 4 days ago
JSON representation
An unofficial Lark(飞书) SDK that contains some commonly used APIs.
- Host: GitHub
- URL: https://github.com/zzzzer91/lark-go
- Owner: zzzzer91
- License: gpl-3.0
- Created: 2023-03-02T12:42:06.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-08-09T11:13:28.000Z (over 1 year ago)
- Last Synced: 2024-06-21T11:50:32.190Z (5 months ago)
- Language: Go
- Homepage:
- Size: 106 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 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
```go
appID, appSecret := "", ""
larkService := lark.NewService(appID, appSecret, time.Second*5)// send msg
larkService.SendMsgByOpenID("openID", lark.NewTextMsg("hello"))
```## References
- [oapi-sdk-go](https://github.com/larksuite/oapi-sdk-go)
- [lark](https://github.com/chyroc/lark)
- [feishu2md](https://github.com/Wsine/feishu2md)