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/pinduoduo/request.go

37 lines
801 B

package pinduoduo
import (
"context"
"github.com/dtapps/go-library"
"github.com/dtapps/go-library/utils/gorequest"
"github.com/dtapps/go-library/utils/gostring"
)
func (c *Client) request(ctx context.Context, params map[string]interface{}) (gorequest.Response, error) {
// 签名
c.Sign(params)
// 创建请求
client := c.client
// 设置参数
client.SetParams(params)
// 发起请求
request, err := client.Get(ctx)
if err != nil {
return gorequest.Response{}, err
}
// 日志
if c.config.PgsqlDb != nil {
go c.log.GormMiddlewareCustom(ctx, gostring.ToString(params["type"]), request, go_library.Version())
}
if c.config.MongoDb != nil {
go c.log.MongoMiddlewareCustom(ctx, gostring.ToString(params["type"]), request, go_library.Version())
}
return request, err
}