You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
public synchronized Result notify(@PathVariable Long barberOrderId,@RequestBody String notifyData) {
try{
final WxPayOrderNotifyResult notifyResult = wxPayService.parseOrderNotifyResult(notifyData);
}catch{.....}
支付回调结果解析报错
SpringBoot 3.4.2
模块版本情况
public synchronized Result notify(@PathVariable Long barberOrderId,@RequestBody String notifyData) {
try{
final WxPayOrderNotifyResult notifyResult = wxPayService.parseOrderNotifyResult(notifyData);
}catch{.....}
}
@binarywang