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

flanche/微信Go SDK
暂停

forked from bozz/微信Go SDK
暂停
 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
wx_unifiedorder_test.go 1.02 KB
一键复制 编辑 原始数据 按行查看 历史
package wechat
import (
"fmt"
"testing"
)
func TestUnifiedOrder(t *testing.T) {
testUnifiedOrder(t)
}
// 测试统一下单
func testUnifiedOrder(t *testing.T) (outTradeNo string) {
fmt.Println("----------统一下单----------")
//outTradeNo = GetRandomString(32)
// 初始化参数
body := UnifiedOrderBody{}
body.Body = "7克拉车场-京TTT001-微信支付-停车费"
//body.OutTradeNo = outTradeNo
body.OutTradeNo = "wxcs201908271600001111"
body.TotalFee = 301
body.SpbillCreateIP = "124.77.173.62"
body.NotifyUrl = "http://www.gopay.ink"
body.TradeType = TradeTypeNative
// 请求支付
wxRsp, err := testClient.UnifiedOrder(body)
if err != nil {
t.Error(err)
return
}
fmt.Printf("返回值: %+v\n", wxRsp)
// 获取小程序需要的支付签名
//timeStamp := strconv.FormatInt(time.Now().Unix(), 10)
//pac := "prepay_id=" + wxRsp.PrepayId
//paySign := GetMiniPaySign("wxbf1c916561ebb420", wxRsp.NonceStr, pac, SignTypeMD5, timeStamp, os.Getenv("ApiKey"))
//fmt.Printf("paySign: %s\n", paySign)
return
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/flanche/wechat.git
git@gitee.com:flanche/wechat.git
flanche
wechat
微信Go SDK
master

搜索帮助