From 69d4cf8e1b5c9eacfa07150221590322758d1b0e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E6=99=AF=E7=AB=8B?= Date: Mon, 21 Nov 2022 18:48:35 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E6=94=AF=E4=BB=98=E6=A1=88?= =?UTF-8?q?=E4=BE=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...-order-create.php => pay-v3-order-app.php} | 5 +-- _test/pay-v3-order-h5.php | 35 +++++++++++++++++ _test/pay-v3-order-jsapi.php | 39 +++++++++++++++++++ _test/pay-v3-order-native.php | 31 +++++++++++++++ _test/wechat-jssdk-sign.php | 2 +- 5 files changed, 108 insertions(+), 4 deletions(-) rename _test/{pay-v3-order-create.php => pay-v3-order-app.php} (81%) create mode 100644 _test/pay-v3-order-h5.php create mode 100644 _test/pay-v3-order-jsapi.php create mode 100644 _test/pay-v3-order-native.php diff --git a/_test/pay-v3-order-create.php b/_test/pay-v3-order-app.php similarity index 81% rename from _test/pay-v3-order-create.php rename to _test/pay-v3-order-app.php index 5448b6a..90e5290 100644 --- a/_test/pay-v3-order-create.php +++ b/_test/pay-v3-order-app.php @@ -10,13 +10,12 @@ try { $payment = \WePayV3\Order::instance($config); // 4. 组装支付参数 - $result = $payment->create('jsapi', [ - 'appid' => 'wx60a43dd8161666d4', + $result = $payment->create('app', [ + 'appid' => $config['appid'], 'mchid' => $config['mch_id'], 'description' => '商品描述', 'out_trade_no' => (string)time(), 'notify_url' => 'https://thinkadmin.top', - 'payer' => ['openid' => 'o38gps3vNdCqaggFfrBRCRikwlWY'], 'amount' => ['total' => 2, 'currency' => 'CNY'], ]); diff --git a/_test/pay-v3-order-h5.php b/_test/pay-v3-order-h5.php new file mode 100644 index 0000000..0badc70 --- /dev/null +++ b/_test/pay-v3-order-h5.php @@ -0,0 +1,35 @@ +create('h5', [ + 'appid' => $config['appid'], + 'mchid' => $config['mch_id'], + 'description' => '商品描述', + 'out_trade_no' => (string)time(), + 'notify_url' => 'https://thinkadmin.top', + 'amount' => ['total' => 2, 'currency' => 'CNY'], + 'scene_info' => [ + 'h5_info' => [ + 'type' => 'Wap', + ], + 'payer_client_ip' => '14.23.150.211', + ], + ]); + + echo '
';
+    echo "\n--- 创建支付参数 ---\n";
+    var_export($result);
+
+} catch (\Exception $exception) {
+    // 出错啦,处理下吧
+    echo $exception->getMessage() . PHP_EOL;
+}
\ No newline at end of file
diff --git a/_test/pay-v3-order-jsapi.php b/_test/pay-v3-order-jsapi.php
new file mode 100644
index 0000000..b2ec644
--- /dev/null
+++ b/_test/pay-v3-order-jsapi.php
@@ -0,0 +1,39 @@
+create('jsapi', [
+        'appid'        => $config['appid'],
+        'mchid'        => $config['mch_id'],
+        'description'  => '商品描述',
+        'out_trade_no' => (string)time(),
+        'notify_url'   => 'https://thinkadmin.top',
+        'payer'        => ['openid' => 'o38gps3vNdCqaggFfrBRCRikwlWY'],
+        'amount'       => ['total' => 2, 'currency' => 'CNY'],
+    ]);
+
+    echo '
';
+    echo "\n--- 创建支付参数 ---\n";
+    var_export($result);
+
+//    array(
+//        'appId'     => 'wx60a43dd8161666d4',
+//        'timeStamp' => '1669027650',
+//        'nonceStr'  => 'dfscg4lm02uqy448kjd1kjs2eo26joom',
+//        'package'   => 'prepay_id=wx211847302881094d83b1917194ca880000',
+//        'signType'  => 'RSA',
+//        'paySign'   => '1wvvi4vmcJmP3GXB0H52mxp8lOhyqE4BtLmyi3Flg8DVKCES4fsb6+0z/L9sYkbp/TNinsnK0k7mUpTe2Yo86P1DLg18fR7zsIn5u1+3tI58boHk3VsAJl4Uhlti9ME3T7kRq1bEb4DGxp16+ixRynOqndkIkYXxrREhsrZIQlsGMfNCV0K1707s7jBTgqIm1vlkpIjNEg8nbcuG88Vzly4dR1a9K6Fux+sm0gu2rMroRwIo2R/0rgHGDANmnAZj6YEfLZlRrGTbr9r0V1+HHQPvV4BJLvTG8KXVJmJSJzBWSgq31PwrLWdOwdtpNKk7wJbY7yoScYUysYqqzM4DTQ==',
+//    );
+
+} catch (\Exception $exception) {
+    // 出错啦,处理下吧
+    echo $exception->getMessage() . PHP_EOL;
+}
\ No newline at end of file
diff --git a/_test/pay-v3-order-native.php b/_test/pay-v3-order-native.php
new file mode 100644
index 0000000..bb4d7c5
--- /dev/null
+++ b/_test/pay-v3-order-native.php
@@ -0,0 +1,31 @@
+create('native', [
+        'appid'        => $config['appid'],
+        'mchid'        => $config['mch_id'],
+        'description'  => '商品描述',
+        'out_trade_no' => (string)time(),
+        'notify_url'   => 'https://thinkadmin.top',
+        'amount'       => ['total' => 2, 'currency' => 'CNY'],
+    ]);
+
+    echo '
';
+    echo "\n--- 创建支付参数 ---\n";
+    var_export($result);
+
+    // array('code_url' => 'weixin://wxpay/bizpayurl?pr=cdJXOVDzz');
+
+} catch (\Exception $exception) {
+    // 出错啦,处理下吧
+    echo $exception->getMessage() . PHP_EOL;
+}
\ No newline at end of file
diff --git a/_test/wechat-jssdk-sign.php b/_test/wechat-jssdk-sign.php
index 054734e..a84310b 100644
--- a/_test/wechat-jssdk-sign.php
+++ b/_test/wechat-jssdk-sign.php
@@ -26,7 +26,7 @@ try {
     $wechat = \WeChat\Script::instance($config);
 
     // 4. 获取JSSDK网址签名配置
-    $result = $wechat->getJsSign('http://a.com/test.php');
+    $result = $wechat->getJsSign('https://a.com/test.php');
 
     var_export($result);