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

33 lines
556 B

package pinduoduo
import (
"context"
"fmt"
"go.dtapp.net/gorequest"
)
func (c *Client) request(ctx context.Context, params map[string]interface{}) (gorequest.Response, error) {
// 签名
c.Sign(params)
// 创建请求
client := c.requestClient
// 设置参数
client.SetParams(params)
// 发起请求
request, err := client.Get(ctx)
if err != nil {
return gorequest.Response{}, err
}
// 日志
if c.log.status {
go c.log.client.MiddlewareCustom(ctx, fmt.Sprintf("%s", params["type"]), request, Version)
}
return request, err
}