From 9eac291f5c820b81b94dbb09d6a23580a5561db9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E6=99=AF=E7=AB=8B?= Date: Tue, 27 Jun 2023 15:50:58 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=BE=AE=E4=BF=A1V3=E6=94=AF?= =?UTF-8?q?=E4=BB=98=E5=8F=82=E6=95=B0=E5=85=BC=E5=AE=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- WePayV3/Order.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/WePayV3/Order.php b/WePayV3/Order.php index 0ad4284..12842d9 100644 --- a/WePayV3/Order.php +++ b/WePayV3/Order.php @@ -70,7 +70,7 @@ class Order extends BasicWePay return ['partnerId' => $this->config['mch_id'], 'prepayId' => $result['prepay_id'], 'package' => 'Sign=WXPay', 'nonceStr' => $nonceStr, 'timeStamp' => $time, 'sign' => $sign]; } elseif ($type === 'jsapi') { $sign = $this->signBuild(join("\n", [$appid, $time, $nonceStr, "prepay_id={$result['prepay_id']}", ''])); - return ['appId' => $appid, 'timeStamp' => $time, 'nonceStr' => $nonceStr, 'package' => "prepay_id={$result['prepay_id']}", 'signType' => 'RSA', 'paySign' => $sign]; + return ['appId' => $appid, 'timestamp' => $time, 'timeStamp' => $time, 'nonceStr' => $nonceStr, 'package' => "prepay_id={$result['prepay_id']}", 'signType' => 'RSA', 'paySign' => $sign]; } else { return $result; } @@ -112,8 +112,7 @@ class Order extends BasicWePay public function notify(array $data = []) { if (empty($data)) { - $body = Tools::getRawInput(); - $data = json_decode($body, true); + $data = json_decode(Tools::getRawInput(), true); } if (isset($data['resource'])) { $aes = new DecryptAes($this->config['mch_v3_key']);