From cf8eb26a0ada0d9ae3fd50a6c6e34f5c19cf7255 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E6=99=AF=E7=AB=8B?= Date: Sun, 27 May 2018 21:54:20 +0800 Subject: [PATCH] =?UTF-8?q?[=E6=9B=B4=E6=96=B0]=E4=BF=AE=E6=AD=A3=E5=BE=AE?= =?UTF-8?q?=E4=BF=A1=E7=BA=A2=E5=8C=85=E7=AD=BE=E5=90=8D=E5=8F=8A=E7=AE=80?= =?UTF-8?q?=E5=8C=96=E6=9F=A5=E8=AF=A2=E6=8E=A5=E5=8F=A3=E5=8F=82=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- WePay/Redpack.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/WePay/Redpack.php b/WePay/Redpack.php index 8456810..e4c74b1 100644 --- a/WePay/Redpack.php +++ b/WePay/Redpack.php @@ -35,7 +35,7 @@ class Redpack extends BasicPay $this->params->offsetUnset('appid'); $this->params->set('wxappid', $this->config->get('appid')); $url = "https://api.mch.weixin.qq.com/mmpaymkttransfers/sendredpack"; - return $this->callPostApi($url, $options, true); + return $this->callPostApi($url, $options, true, 'MD5', false); } /** @@ -49,21 +49,21 @@ class Redpack extends BasicPay $this->params->offsetUnset('appid'); $this->params->set('wxappid', $this->config->get('appid')); $url = "https://api.mch.weixin.qq.com/mmpaymkttransfers/sendgroupredpack"; - return $this->callPostApi($url, $options, true); + return $this->callPostApi($url, $options, true, 'MD5', false); } /** * 查询红包记录 - * @param array $options + * @param array $mch_billno 商户发放红包的商户订单号 * @return array * @throws \WeChat\Exceptions\InvalidResponseException */ - public function query(array $options) + public function query($mch_billno) { $this->params->offsetUnset('wxappid'); $this->params->set('appid', $this->config->get('appid')); $url = "https://api.mch.weixin.qq.com/mmpaymkttransfers/gethbinfo"; - return $this->callPostApi($url, $options, true); + return $this->callPostApi($url, ['mch_billno' => $mch_billno, 'bill_type' => 'MCHT'], true, 'MD5', false); } } \ No newline at end of file