java110 лет назад: 6
Родитель
Сommit
0b1a81baf5

+ 2 - 1
service-front/src/main/java/com/java110/front/controller/WechatGatewayController.java

@@ -132,9 +132,10 @@ public class WechatGatewayController extends BaseController {
         String signature = request.getParameter("signature");
         String timestamp = request.getParameter("timestamp");
         String nonce = request.getParameter("nonce");
+        String openId = request.getParameter("openid");
         String responseStr = "";
         logger.debug("token = " + token + "||||" + "signature = " + signature + "|||" + "timestamp = "
-                + timestamp + "|||" + "nonce = " + nonce);
+                + timestamp + "|||" + "nonce = " + nonce + "|||| param = " + param + "|||| openId= " + openId);
         String sourceString = "";
         String[] ss = new String[]{token, timestamp, nonce};
         Arrays.sort(ss);