omnipay-wechatpay icon indicating copy to clipboard operation
omnipay-wechatpay copied to clipboard

(微信支付)WeChatPay driver for the Omnipay PHP payment processing library

Results 16 omnipay-wechatpay issues
Sort by recently updated
recently updated
newest added

Someone one says omnipay-wechatpay does not confirm as from the link, https://aimeos.org/help/viewtopic.php?f=18&t=2287&start=0 Please comment. Regards,

Added sandbox support in simmilar fashion as lokielse/omnipay-unionpay

I would expect to see a notify_url parameter to make an order request but this seems to be missing. Can someone explain why or the assumption used here?

Hello! Could you add possibility of downloading transactions history by API Download Reconciliation File?

微信申请退款,通过setNotifyUrl方法,设置退款通知回调地址无效。

the rule of refund notifies has been changed . It's needed to verify 'refund_status ' .

能不能在1.x版本中增加退款回调地址 RefundOrderRequest.php中getData增加notify_url 参数 微信官方文档:https://pay.weixin.qq.com/wiki/doc/api/jsapi.php?chapter=9_4 中支持退款结果通知url notify_url

在CreateOrder的时候,openid在wechatpay_js里面需要做为必传参数,你的使用文档里面没有写明,希望修改一下

从[官方文档](https://pay.weixin.qq.com/wiki/doc/api/jsapi.php?chapter=9_16&index=10#menu1)可以看出,异步通知的参数中,并没有签名参数,只需要对req_info解密即可。 但是在代码中发现 `if (isset($data['sign']) && $data['sign'] && $sign === $data['sign']) { $responseData['sign_match'] = true; } else { $responseData['sign_match'] = false; } if ($responseData['sign_match'] && isset($data['refund_status']) && $data['refund_status'] == 'SUCCESS') {...