Skip to content

Commit e2a1995

Browse files
committed
修复微信支付企业红包的问题:发送红包的返回结果中,没有签名,不需要进行签名检查。 #140
1 parent b2b0460 commit e2a1995

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

weixin-java-mp/src/main/java/me/chanjar/weixin/mp/api/impl/WxMpPayServiceImpl.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,8 @@ public WxPaySendRedpackResult sendRedpack(WxPaySendRedpackRequest request)
179179
}
180180
String responseContent = this.executeWithKey(url, request.toXML());
181181
WxPaySendRedpackResult result = WxPaySendRedpackResult.fromXML(responseContent, WxPaySendRedpackResult.class);
182-
this.checkResult(result);
182+
//毋须校验,因为没有返回签名信息
183+
// this.checkResult(result);
183184
return result;
184185
}
185186

0 commit comments

Comments
 (0)