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/kashangwl/app.go

32 lines
793 B

package kashangwl
import (
"encoding/json"
"go.dtapp.net/library/utils/gohttp"
"go.dtapp.net/library/utils/gomongo"
"net/http"
"time"
)
// App 卡商网服务
type App struct {
CustomerId int // 商家编号
CustomerKey string // 商家密钥
Mongo gomongo.App // 日志数据库
}
func (app *App) request(url string, params map[string]interface{}) ([]byte, error) {
// 公共参数
params["timestamp"] = time.Now().UnixNano() / 1e6
params["customer_id"] = app.CustomerId
// 签名参数
params["sign"] = app.getSign(app.CustomerKey, params)
// 请求参数
paramsStr, err := json.Marshal(params)
// 请求
postJson, err := gohttp.PostJson(url, paramsStr)
// 日志
go app.mongoLog(url, params, http.MethodPost, postJson)
return postJson.Body, err
}