From ac63302119c2f78124df51fc0a188f59296ff29f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E6=99=AF=E7=AB=8B?= Date: Fri, 28 Apr 2023 20:05:23 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E8=B4=A6=E5=8D=95=E4=B8=8B?= =?UTF-8?q?=E8=BD=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- WePayV3/Contracts/BasicWePay.php | 4 ++-- WePayV3/Order.php | 3 +-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/WePayV3/Contracts/BasicWePay.php b/WePayV3/Contracts/BasicWePay.php index 36a3f9e..41b1528 100644 --- a/WePayV3/Contracts/BasicWePay.php +++ b/WePayV3/Contracts/BasicWePay.php @@ -153,8 +153,8 @@ abstract class BasicWePay $token = sprintf('mchid="%s",nonce_str="%s",timestamp="%d",serial_no="%s",signature="%s"', $this->config['mch_id'], $nonce, $time, $this->config['cert_serial'], $this->signBuild($signstr) ); - - list($header, $content) = $this->_doRequestCurl($method, $this->base . $pathinfo, [ + $location = preg_match('|^https?://|', $pathinfo) ? $pathinfo : ($this->base . $pathinfo); + list($header, $content) = $this->_doRequestCurl($method, $location, [ 'data' => $jsondata, 'header' => [ "Accept: application/json", "Content-Type: application/json", 'User-Agent: https://thinkadmin.top', "Authorization: WECHATPAY2-SHA256-RSA2048 {$token}", diff --git a/WePayV3/Order.php b/WePayV3/Order.php index 02e5439..e094b76 100644 --- a/WePayV3/Order.php +++ b/WePayV3/Order.php @@ -184,7 +184,6 @@ class Order extends BasicWePay */ public function downloadBill($fileurl) { - $path = strstr($fileurl, '/v3/'); - return $this->doRequest('GET', $path, '', false, false); + return $this->doRequest('GET', $fileurl, '', false, false); } }