银联支付
在集成的过程中有遇到问题,欢迎加 QQ 群 203357977 讨论。
go get github.com/smartwalle/unionpay
import github.com/smartwalle/unionpay
关于错误 x509: certificate signed by unknown authority (possibly because of "x509: cannot verify signature: insecure algorithm SHA1-RSA (temporarily override with GODEBUG=x509sha1=1)" while trying to verify candidate authority certificate "CFCA TEST OCA1")
由于安全问题,从 Go 1.18 开始,其 crypto/x509 包默认将拒绝使用 SHA-1 哈希函数签名的证书(自签发的除外)。
银联测试环境签发的证书目前使用的是 SHA-1 签名(没有生产环境,无法得知生产环境信息是否也是使用 SHA-1 进行签名)。
可以通过设置 GODEBUG=x509sha1=1 环境变量暂时恢复。
GODEBUG=x509sha1=1 go run main.go
支付宝 https://github.com/smartwalle/alipay
苹果支付 https://github.com/smartwalle/apple
PayPal https://github.com/smartwalle/paypal
可从 https://open.unionpay.com/tjweb/ij/user/mchTest/param 获取测试环境信息。
https://github.com/smartwalle/unionpay/tree/master/examples 包含一个完整示例。
运行该示例代码之后,可以在浏览器中访问 http://127.0.0.1:9988/unionpay 以打开测试页面。
- 消费接口-创建网页支付 - CreateWebPayment()
- 消费接口-创建 App 支付 - CreateAppPayment()
- 交易状态查询接口 - GetTransaction()
- 消费撤销接口 - Revoke()
- 退货接口接口 - Refund()
在银联系统中,发起消费(支付)、消费撤销(退款)和退货(退款)都会产生交易,都可以通过交易状态查询接口查询相关信息。
退款状态不会在原支付交易中体现。