You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
go-library/service/feishu/api.go

16 lines
377 B

package feishu
import (
"context"
"github.com/dtapps/go-library/utils/gorequest"
)
func (c *Client) Post(ctx context.Context, _method string, notMustParams ...gorequest.Params) ([]byte, error) {
// 参数
params := gorequest.NewParamsWith(notMustParams...)
// 请求
request, err := c.request(ctx, apiUrl+_method, params)
// 定义
return request.ResponseBody, err
}