lark icon indicating copy to clipboard operation
lark copied to clipboard

An easy-to-use SDK for Feishu and Lark Open Platform (Instant Messaging API only)

Results 11 lark issues
Sort by recently updated
recently updated
newest added

增加了I18nCardBuilder 提供对i18n卡片的支持

I believe this should be implemented in api-contact.go due to the current GetUserInfo only supporting open_id, union_id, and user_id, and not having support for search by email. ``` // GetUserIDByEmail...

supports to build multi-line rich text (or say multi-segment rich text in a single post) by using NewLine() method, instead of using `\n` in a TextTag to start a new...

Currently I found it seems do not support multi-lines message when I'm using the `PostNotificationV2` method. Am I missing something? Will it be supported? Thanks.

`err = bot.StartHeartbeat()` will not return error if StartHeartBeat returns response with non-0 Code, and then it will send `TenantAppAccessToken` as an empty string I think we should throw an...

At the moment the only way to pass a context through when making requests is to use `WithContext(ctx)` from [logger.go:76](https://github.com/go-lark/lark/blob/main/logger.go#L76), but this sets the context globally on `bot.ctx` (defined [here](https://github.com/go-lark/lark/blob/main/lark.go#L47))....

参考:[卡片 JSON 2.0 版本更新说明](https://open.feishu.cn/document/uAjLw4CM/ukzMukzMukzM/feishu-cards/card-json-v2-breaking-changes-release-notes) V2 版支持完整的 [富文本(Markdown)](https://open.feishu.cn/document/uAjLw4CM/ukzMukzMukzM/feishu-cards/card-json-v2-components/content-components/rich-text) 语法,也可以让开发者推送 卡片流式更新、文本流式 消息 这对于发送自定义代码块与接入 AI 消息很有帮助 希望可以支持

Why? - No goroutine-safe context supported. ```go // old way bot.PostMessage(msgBody) // new way bot.PostMessage(ctx, msgBody) ``` - Biz errors are not intuitive. ```go // old way resp, err :=...