-
-
Notifications
You must be signed in to change notification settings - Fork 8.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
退款回调应答的类型问题 #2501
Comments
你所谓的json对象是什么意思?能否明确下? |
在退款回调应答时,微信文档是这样说的:“退款通知http应答码为200且返回状态码为SUCCESS才会当做商户接收成功,否则会重试。“,参考最后 https://pay.weixin.qq.com/wiki/doc/apiv3/apis/chapter3_5_11.shtml。 |
最终返回给微信的肯定是个字符串吧,你有没有确认下你最后一种方案所返回的字符串是什么吗? |
你确实不应该用 |
最近接入的时候也有遇到应答无效的问题。模仿作者大大的类写了一个应答 import com.alibaba.fastjson.JSON;
} |
欢迎直接PR代码 |
简要描述
微信支付订单和退款的异步通知共用的响应类:WxPayNotifyResponse,并不适用于目前微信的情况。
模块版本情况
详细描述
1、在处理支付异步通知时,使用WxPayNotifyResponse.success()返回,微信方当作成功应答,并无问题;
2、在处理退款异步通知时,使用WxPayNotifyResponse.success()返回,微信方并不作为成功的应答,仍然重复回调;
3、我看了下这个类是返回xml的方式,我改为JSON字符串返回,无法解决问题;后来改为JSON对象返回,问题解决。
关于提交PR
由于不确定是否我一个人遇到这样的问题,所以仅知解决问题,无法确认,而且各人用到JSON对象不一样,因此没有提交PR。
The text was updated successfully, but these errors were encountered: