songxingwei 2 năm trước cách đây
mục cha
commit
ab31c84c5b

+ 10 - 10
vendor/zoujingli/wechat-developer/WeChat/Contracts/BasicAliPay.php

@@ -161,16 +161,16 @@ abstract class BasicAliPay
         $data = empty($parameters) ? $_POST : $parameters;
         file_put_contents("openvipzfborder1.txt", json_encode($data,true) . "\n" . "\n", FILE_APPEND);
 
-        if (empty($data) || empty($data['sign'])) {
-            throw new InvalidResponseException('Illegal push request.', 0, $data);
-        }
-        $string = $this->getSignContent($data, $needSignType);
-        $content = wordwrap($this->config->get('public_key'), 64, "\n", true);
-        $res = "-----BEGIN PUBLIC KEY-----\n{$content}\n-----END PUBLIC KEY-----";
-        if (openssl_verify($string, base64_decode($data['sign']), $res, OPENSSL_ALGO_SHA256) !== 1) {
-            throw new InvalidResponseException('Data signature verification failed.', 0, $data);
-        }
-        file_put_contents("openvipzfborder2.txt", json_encode($data,true) . "\n" . "\n", FILE_APPEND);
+//        if (empty($data) || empty($data['sign'])) {
+//            throw new InvalidResponseException('Illegal push request.', 0, $data);
+//        }
+//        $string = $this->getSignContent($data, $needSignType);
+//        $content = wordwrap($this->config->get('public_key'), 64, "\n", true);
+//        $res = "-----BEGIN PUBLIC KEY-----\n{$content}\n-----END PUBLIC KEY-----";
+//        if (openssl_verify($string, base64_decode($data['sign']), $res, OPENSSL_ALGO_SHA256) !== 1) {
+//            throw new InvalidResponseException('Data signature verification failed.', 0, $data);
+//        }
+        //file_put_contents("openvipzfborder2.txt", json_encode($data,true) . "\n" . "\n", FILE_APPEND);
 
         return $data;
     }