From 21b6758c042a38471450a228b305a17574fba70d Mon Sep 17 00:00:00 2001 From: yao978318542 <978318542@qq.com> Date: Thu, 27 Apr 2023 09:52:35 +0800 Subject: [PATCH 1/2] =?UTF-8?q?V3=E9=80=80=E6=AC=BE=E9=93=BE=E6=8E=A5?= =?UTF-8?q?=E5=92=8C=E6=8E=A5=E5=8F=A3=E6=96=87=E6=A1=A3=E4=B8=8D=E4=B8=80?= =?UTF-8?q?=E8=87=B4=20post=E8=AF=B7=E6=B1=82=E5=A6=82=E6=9E=9C=E5=93=8D?= =?UTF-8?q?=E5=BA=94=E5=A4=B1=E8=B4=A5=E7=9A=84=E8=AF=9D=E6=B2=A1=E6=9C=89?= =?UTF-8?q?=E4=B8=8B=E9=9D=A2=E7=9A=84timestamp=E5=AD=97=E6=AE=B5=EF=BC=8C?= =?UTF-8?q?=E7=9B=B4=E6=8E=A5=E8=BF=94=E5=9B=9E=E5=BE=AE=E4=BF=A1=E7=9A=84?= =?UTF-8?q?=E9=94=99=E8=AF=AF=E4=BF=A1=E6=81=AF=E6=96=B9=E4=BE=BF=E5=A4=84?= =?UTF-8?q?=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- WePayV3/Contracts/BasicWePay.php | 3 +++ WePayV3/Refund.php | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/WePayV3/Contracts/BasicWePay.php b/WePayV3/Contracts/BasicWePay.php index 056ddf7..214e9cf 100644 --- a/WePayV3/Contracts/BasicWePay.php +++ b/WePayV3/Contracts/BasicWePay.php @@ -136,6 +136,9 @@ abstract class BasicWePay ], ]); if ($verify) { + if(empty($headers)){ + return json_decode($content, true); + } $headers = []; foreach (explode("\n", $header) as $line) { if (stripos($line, 'Wechatpay') !== false) { diff --git a/WePayV3/Refund.php b/WePayV3/Refund.php index bae2563..76ed4bf 100644 --- a/WePayV3/Refund.php +++ b/WePayV3/Refund.php @@ -36,7 +36,7 @@ class Refund extends BasicWePay */ public function create($data) { - return $this->doRequest('POST', '/v3/ecommerce/refunds/apply', json_encode($data, JSON_UNESCAPED_UNICODE), true); + return $this->doRequest('POST', '/v3/refund/domestic/refunds', json_encode($data, JSON_UNESCAPED_UNICODE), true); } /** From 113c4023af9b16d9d71c5fea934fe817c33e73aa Mon Sep 17 00:00:00 2001 From: yao978318542 <978318542@qq.com> Date: Sat, 6 May 2023 11:58:32 +0800 Subject: [PATCH 2/2] =?UTF-8?q?=E5=A6=82=E6=9E=9Cnative=E6=94=AF=E4=BB=98?= =?UTF-8?q?=E6=96=B9=E5=BC=8F=E7=9A=84=E8=AF=9D=E6=B2=A1=E6=9C=89prepay=5F?= =?UTF-8?q?id=E4=BC=9A=E6=8A=A5=E9=94=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- WePayV3/Order.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/WePayV3/Order.php b/WePayV3/Order.php index 489f386..d0a97a8 100644 --- a/WePayV3/Order.php +++ b/WePayV3/Order.php @@ -56,6 +56,8 @@ class Order extends BasicWePay } else { // 创建预支付码 $result = $this->doRequest('POST', $types[$type], json_encode($data, JSON_UNESCAPED_UNICODE), true); + //如果是生成码的话没有prepay_id + if (empty($result['prepay_id'])) return $result; if (empty($result['h5_url']) && empty($result['code_url']) && empty($result['prepay_id'])) { $message = isset($result['code']) ? "[ {$result['code']} ] " : ''; $message .= isset($result['message']) ? $result['message'] : json_encode($result, JSON_UNESCAPED_UNICODE);