From d32b3ecd887a00b5fbb4ef08868be05c942e90ba Mon Sep 17 00:00:00 2001 From: kentwangit Date: Thu, 29 Apr 2021 16:18:22 +0800 Subject: [PATCH 1/2] Update Order.php MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 微信要求: 签名串一共有四行,每一行为一个参数。行尾以\n(换行符,ASCII编码值为0x0A)结束,包括最后一行。 如果最后一行没有加\n,前端调起支付时会提签名错误。 --- WePayV3/Order.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/WePayV3/Order.php b/WePayV3/Order.php index e22cb59..460c995 100644 --- a/WePayV3/Order.php +++ b/WePayV3/Order.php @@ -60,10 +60,10 @@ class Order extends BasicWePay $prepayId = $result['prepay_id']; $nonceStr = Tools::createNoncestr(); if ($type === 'app') { - $sign = $this->signBuild(join("\n", [$appid, $time, $nonceStr, $prepayId])); + $sign = $this->signBuild(join("\n", [$appid, $time, $nonceStr, $prepayId])."\n"); return ['partnerId' => $this->config['mch_id'], 'prepayId' => $prepayId, 'package' => 'Sign=WXPay', 'nonceStr' => $nonceStr, 'timeStamp' => $time, 'sign' => $sign]; } elseif ($type === 'jsapi') { - $sign = $this->signBuild(join("\n", [$appid, $time, $nonceStr, "prepay_id={$prepayId}"])); + $sign = $this->signBuild(join("\n", [$appid, $time, $nonceStr, "prepay_id={$prepayId}"])."\n"); return ['appId' => $appid, 'timeStamp' => $time, 'nonceStr' => $nonceStr, 'package' => "prepay_id={$prepayId}", 'signType' => 'RSA', 'paySign' => $sign]; } else { return $result; @@ -103,4 +103,4 @@ class Order extends BasicWePay return $data; } -} \ No newline at end of file +} From 2f1128b923e0cfc9e4625f963cbb29e9b8df5945 Mon Sep 17 00:00:00 2001 From: kentwangit Date: Wed, 19 May 2021 11:35:03 +0800 Subject: [PATCH 2/2] Update composer.json --- composer.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index fea9884..1195ced 100644 --- a/composer.json +++ b/composer.json @@ -1,7 +1,7 @@ { "type": "library", - "name": "zoujingli/wechat-developer", - "homepage": "https://github.com/zoujingli/WeChatDeveloper", + "name": "zoujingli/wechat-developer-kentwangit", + "homepage": "https://github.com/kentwangit/WeChatDeveloper", "description": "WeChat platform and WeChat payment development tools", "license": "MIT", "authors": [ @@ -42,4 +42,4 @@ "WePayV3\\": "WePayV3" } } -} \ No newline at end of file +}