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/wechatpayapiv2/api.go

17 lines
451 B

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