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