oapi-sdk-go icon indicating copy to clipboard operation
oapi-sdk-go copied to clipboard

larksuite oapi sdk by golang

Results 82 oapi-sdk-go issues
Sort by recently updated
recently updated
newest added

As the title shown, the interface related to eLearning can not be found. Could you please give me an instruction?

1. client.Bitable.AppTableField.List API返回体中description为string,Resp结构是一个struct ``` { "description": "description", // 中间字段隐去 "type": 3, "ui_type": "SingleSelect" }, ``` 2. client.Bitable.AppTableView.Patch API返回体中AppTableViewPropertyFilterInfoCondition.data.view.property.filter_info.conditions.field_type是int,Resp结构中是string

具体报错 ``` 2023/04/27 13:54:07 [Error] [handle event,path:/event,err: json: cannot unmarshal number into Go struct field P2BotMenuV6Data.event.timestamp of type string] ```

https://open.feishu.cn/document/ukTMukTMukTM/ucTNwUjL3UDM14yN1ATN/column-set

例如 https://github.com/larksuite/oapi-sdk-go/blob/d83e37dd8b8f3eb68c34843b8d9857ebdb556725/service/bitable/v1/model.go#L6156 https://github.com/larksuite/oapi-sdk-go/blob/d83e37dd8b8f3eb68c34843b8d9857ebdb556725/service/bitable/v1/model.go#L6148 这两个字段应该是 `[]string` 类型

EventHandle无法获取http request中传入的context: 文件 core/httpserverext/httpserverext.go 中 ``` func doProcess(writer http.ResponseWriter, req *http.Request, reqHandler larkevent.IReqHandler) { // 转换http请求对象为标准请求对象 ctx := context.Background() eventReq, err := translate(ctx, req) if err != nil { writer.WriteHeader(http.StatusInternalServerError)...

飞书SDK的 Cache接口: ``` type Cache interface { Set(ctx context.Context, key string, value string, expireTime time.Duration) error Get(ctx context.Context, key string) (string, error) } ``` GO语言的 redis包 [github.com/go-redis/redis/v8](https://github.com/redis/go-redis) Set 方法的参数 value...

这个我查了飞书文档里是没有的, 文档里只有常用审批的(例如请假,补卡等)和审批定义变更的。 我需要的是自建的审批状态更新能处理的,它的event type是`approval_instance`。 在开发者后台里去订阅事件,是可以订阅到这个事件的。