瀏覽代碼

update 微信官方支付

tags/v1.6.1
DengBiao 1 年之前
父節點
當前提交
d984e798bd
共有 1 個檔案被更改,包括 4 行新增0 行删除
  1. +4
    -0
      lib/local_wechat/api.go

+ 4
- 0
lib/local_wechat/api.go 查看文件

@@ -127,6 +127,10 @@ func TradeH5Pay(client *wechat.Client, subject, orderID, amount, notifyUrl strin

// TradeMiniProgPay is 微信小程序支付 ☑️
func TradeMiniProgPay(client *wechat.Client, subject, orderID, amount, notifyUrl, openid string) (map[string]string, error) {
if len(subject) > 127 {
tmpSubject := []rune(subject)
subject = string(tmpSubject[0:44])
}
// 初始化 BodyMap
bm := make(gopay.BodyMap)
bm.Set("nonce_str", util.GetRandomString(32)).


Loading…
取消
儲存