for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the overtrue/wechat.
*
* (c) overtrue <[email protected]>
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
namespace EasyWeChat\OfficialAccount\Card;
use EasyWeChat\Kernel\BaseClient;
/**
* Class GiftCardClient.
* @author overtrue <[email protected]>
class GiftCardClient extends BaseClient
{
* 申请微信支付礼品卡权限接口.
* @param string $subMchId
* @return mixed
public function add(string $subMchId)
$params = [
'sub_mch_id' => $subMchId,
];
return $this->httpPostJson('card/giftcard/pay/whitelist/add', $params);
}
* 绑定商户号到礼品卡小程序接口(商户号必须为公众号申请的商户号,否则报错).
* @param string $wxaAppid
public function bind(string $subMchId, string $wxaAppid)
'wxa_appid' => $wxaAppid,
return $this->httpPostJson('card/giftcard/pay/submch/bind', $params);
* 上传小程序代码.
* @param string $pageId
public function set(string $wxaAppid, string $pageId)
'page_id' => $pageId,
return $this->httpPostJson('card/giftcard/wxa/set', $params);