Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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)