hrjy 2 years ago
parent
commit
1267b2d1e3
1 changed files with 2 additions and 4 deletions
  1. 2 4
      crmeb/services/GmService.php

+ 2 - 4
crmeb/services/GmService.php

@@ -87,14 +87,12 @@ class GmService
             'sm2EncryptData' => self::SM2Encrypt($key, $gf_k), //sm2加密key
             'sm2Sign' => self::SM2Sign($key, $k2, $k1), //sm2加密key
         ];
-        dump($data);
-        exit();
 
         //拼接签名参数,md5转大写
         $data['sign'] = self::SM3Crypt($data['random'] . $data['seqNO'] . self::$appSecretKey . $key);
 
-//        dump($data);
-//        exit;
+        dump($data);
+        exit;
         //发送post接口请求
         $res = self::https_post(self::$tokenUrl, $data);