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

19 lines
367 B

package wechatqy
import (
"encoding/json"
"gopkg.in/dtapps/go-library.v2/utils/gohttp"
)
type App struct {
Key string
}
func (app *App) request(url string, params map[string]interface{}) (body []byte, err error) {
// 请求参数
paramsStr, err := json.Marshal(params)
// 请求
postJson, err := gohttp.PostJson(url, paramsStr)
return postJson.Body, err
}