From 6d9b9f71cb9e0ce434692499c6664708dec3e581 Mon Sep 17 00:00:00 2001 From: Anyon Date: Fri, 25 May 2018 10:21:36 +0800 Subject: [PATCH] =?UTF-8?q?[=E6=9B=B4=E6=96=B0]=E5=A2=9E=E5=8A=A0=E5=BE=AE?= =?UTF-8?q?=E4=BF=A1=E5=95=86=E6=88=B7=E7=BA=A2=E5=8C=85=E6=94=AF=E6=8C=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- We.php | 1 + WePay/Redpack.php | 69 +++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 70 insertions(+) create mode 100644 WePay/Redpack.php diff --git a/We.php b/We.php index 3786d53..4acafaf 100644 --- a/We.php +++ b/We.php @@ -54,6 +54,7 @@ use WeChat\Exceptions\InvalidInstanceException; * @method \WePay\Bill WePayBill($options = []) static 微信商户账单及评论 * @method \WePay\Order WePayOrder($options = []) static 微信商户订单 * @method \WePay\Refund WePayRefund($options = []) static 微信商户退款 + * @method \WePay\Redpack WePayRedpack($options = []) static 微信红包支持 * @method \WePay\Transfers WePayTransfers($options = []) static 微信商户打款到零钱 * @method \WePay\TransFresBank WePayTransFresBank($options = []) static 微信商户打款到银行卡 */ diff --git a/WePay/Redpack.php b/WePay/Redpack.php new file mode 100644 index 0000000..8456810 --- /dev/null +++ b/WePay/Redpack.php @@ -0,0 +1,69 @@ +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); + } + + /** + * 发放裂变红包 + * @param array $options + * @return array + * @throws \WeChat\Exceptions\InvalidResponseException + */ + public function groups(array $options) + { + $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); + } + + /** + * 查询红包记录 + * @param array $options + * @return array + * @throws \WeChat\Exceptions\InvalidResponseException + */ + public function query(array $options) + { + $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); + } + +} \ No newline at end of file