Coder Social home page Coder Social logo

wechatpay's Introduction

wechatpay

微信支付sdk for go 当前仅支持V3直连商户, 持续更新

  • 如果在集成过程中遇到问题, 请联系: [email protected]
  • 安装
     go get -u github.com/xxiaomuma/wechatpay

微信支付

  • 基础配置
         pay := NewPay(&config.Config{
              Wx: &config.WxConfig{
                    AppId:               "xxx", // 微信APPID
                    MchId:               "xxx", // 商户号
                    ApiKey:              "xxx", // v2api key(暂时没有用到)
                    V3ApiKey:            "xxx", // v3api key
                    CertificateSerialNo: "xxx", // 证书序列号
                    CertPath:            "xxx/apiclient_cert.p12", // 证书地址
                    KeyPemPath:          "xxx/apiclient_key.pem",  
                    CertPemPath:         "xxx/apiclient_cert.pem",
              },
         })
    • pay使用全局变量
  • 统一下单
          param := unified.WxUnifiedParam {
     	             OutTradeNo:  "xxxx",
     	             NotifyUrl:   "xxx",
     	             Description: "测试",
          }
          param.SetPayerOpenId("xxx")
          param.SetCNYPayAmount(1)
          result, err := pay.GetWxPay().GetUnified().JsApiPayV3(param)
    • 这里使用的是jsapi统一下单,GetUnified下提供APP, JSAPI, H5, NATIVE
        param := unified.WxUnifiedParam{
    	            OutTradeNo:  "xxx",
    	            NotifyUrl:   "xxx",
    	            Description: "测试",
        }
        param.SetCNYPayAmount(1)
        result, err := pay.GetWxPay().GetUnified().NativePayV3(param)
  • 查询
    GetWxPay().GetQuery()
  • 退款
     GetWxPay.GetRefund()

wechatpay's People

Contributors

xxiaomuma avatar

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.