当前仓库属于暂停状态,部分功能使用受限,详情请查阅 仓库状态说明
1 Star 0 Fork 98

flanche/微信Go SDK
暂停

forked from bozz/微信Go SDK
暂停
 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
wx_change_test.go 827 Bytes
一键复制 编辑 原始数据 按行查看 历史
leexs 提交于 2019-08-25 16:59 . 微信找零接口的对接
package wechat
import (
"fmt"
"testing"
)
// 测试微信找零
func TestChange(t *testing.T) {
fmt.Println("----------微信找零----------")
// 初始化参数
body := ChangeBody{}
body.PartnerTradeNo = "wxcs201908231600003333"
body.OpenId = "134891333183485251"
body.CheckName = CheckNameTypeNoCheck
body.Amount = 1
body.Desc = "停车费找零"
body.SpbillCreateIP = "124.77.173.62"
// 请求的客户端必须是商户模式,且是特殊的商户接口
changeClient := NewClient(true, true, ServiceTypeNormalDomestic, testApiKey, testCertPath, Config{
AppId: testSubAppId, // 用子商户id设置
MchId: testSubMchId, // 用子商户号设置
})
// 请求支付
wxRsp, err := changeClient.Change(body)
if err != nil {
t.Error(err)
return
}
fmt.Printf("返回值: %+v\n", wxRsp)
return
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/flanche/wechat.git
git@gitee.com:flanche/wechat.git
flanche
wechat
微信Go SDK
master

搜索帮助