|
@@ -77,9 +77,11 @@ public class FiYouPayOrderServiceImpl implements FuYouPayOrderService {
|
|
|
.append(privateKey);
|
|
|
requestVO.getReq().setSign(MD5.MD5Encode(sb.toString()));
|
|
|
String res = null;
|
|
|
+ log.info("向富友发起微信支付请求 == 请求体:{}", JSON.toJSONString(requestVO.getReq()));
|
|
|
try {
|
|
|
res = http.newPost(JSON.toJSONString(requestVO.getReq()));
|
|
|
|
|
|
+ log.info("向富友发起微信支付请求 == 响应体:{}", res);
|
|
|
// 解析返回结果,获取参数
|
|
|
ObjectMapper mapper = new ObjectMapper();
|
|
|
FuYouPaymentResponseVO resp = mapper.readValue(res, FuYouPaymentResponseVO.class);
|