优化接口调用,标准化请求

This commit is contained in:
邹景立 2024-01-02 17:57:37 +08:00
parent 78b0393048
commit 4e0e9d79cc
15 changed files with 296 additions and 462 deletions

View File

@ -35,38 +35,35 @@ class Card extends BasicWeChat
public function create(array $data) public function create(array $data)
{ {
$url = "https://api.weixin.qq.com/card/create?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/card/create?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, $data);
return $this->httpPostForJson($url, $data);
} }
/** /**
* 设置买单接口 * 设置买单接口
* @param string $card_id * @param string $cardId
* @param bool $is_open * @param bool $isOpen
* @return array * @return array
* @throws Exceptions\InvalidResponseException * @throws Exceptions\InvalidResponseException
* @throws Exceptions\LocalCacheException * @throws Exceptions\LocalCacheException
*/ */
public function setPaycell($card_id, $is_open = true) public function setPaycell($cardId, $isOpen = true)
{ {
$url = "https://api.weixin.qq.com/card/paycell/set?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/card/paycell/set?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, ['card_id' => $cardId, 'is_open' => $isOpen]);
return $this->httpPostForJson($url, ['card_id' => $card_id, 'is_open' => $is_open]);
} }
/** /**
* 设置自助核销接口 * 设置自助核销接口
* @param string $card_id * @param string $cardId
* @param bool $is_open * @param bool $isOpen
* @return array * @return array
* @throws Exceptions\InvalidResponseException * @throws Exceptions\InvalidResponseException
* @throws Exceptions\LocalCacheException * @throws Exceptions\LocalCacheException
*/ */
public function setConsumeCell($card_id, $is_open = true) public function setConsumeCell($cardId, $isOpen = true)
{ {
$url = "https://api.weixin.qq.com/card/selfconsumecell/set?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/card/selfconsumecell/set?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, ['card_id' => $cardId, 'is_open' => $isOpen]);
return $this->httpPostForJson($url, ['card_id' => $card_id, 'is_open' => $is_open]);
} }
/** /**
@ -79,8 +76,7 @@ class Card extends BasicWeChat
public function createQrc(array $data) public function createQrc(array $data)
{ {
$url = "https://api.weixin.qq.com/card/qrcode/create?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/card/qrcode/create?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, $data);
return $this->httpPostForJson($url, $data);
} }
/** /**
@ -93,66 +89,61 @@ class Card extends BasicWeChat
public function createLandingPage(array $data) public function createLandingPage(array $data)
{ {
$url = "https://api.weixin.qq.com/card/landingpage/create?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/card/landingpage/create?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, $data);
return $this->httpPostForJson($url, $data);
} }
/** /**
* 导入自定义code * 导入自定义code
* @param string $card_id * @param string $cardId
* @param array $code * @param array $code
* @return array * @return array
* @throws Exceptions\InvalidResponseException * @throws Exceptions\InvalidResponseException
* @throws Exceptions\LocalCacheException * @throws Exceptions\LocalCacheException
*/ */
public function deposit($card_id, array $code) public function deposit($cardId, array $code)
{ {
$url = "https://api.weixin.qq.com/card/code/deposit?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/card/code/deposit?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, ['card_id' => $cardId, 'code' => $code]);
return $this->httpPostForJson($url, ['card_id' => $card_id, 'code' => $code]);
} }
/** /**
* 查询导入code数目 * 查询导入code数目
* @param string $card_id * @param string $cardId
* @return array * @return array
* @throws Exceptions\InvalidResponseException * @throws Exceptions\InvalidResponseException
* @throws Exceptions\LocalCacheException * @throws Exceptions\LocalCacheException
*/ */
public function getDepositCount($card_id) public function getDepositCount($cardId)
{ {
$url = "https://api.weixin.qq.com/card/code/getdepositcount?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/card/code/getdepositcount?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, ['card_id' => $cardId]);
return $this->httpPostForJson($url, ['card_id' => $card_id]);
} }
/** /**
* 核查code接口 * 核查code接口
* @param string $card_id 进行导入code的卡券ID * @param string $cardId 进行导入code的卡券ID
* @param array $code 已经微信卡券后台的自定义code上限为100个 * @param array $code 已经微信卡券后台的自定义code上限为100个
* @return array * @return array
* @throws Exceptions\InvalidResponseException * @throws Exceptions\InvalidResponseException
* @throws Exceptions\LocalCacheException * @throws Exceptions\LocalCacheException
*/ */
public function checkCode($card_id, array $code) public function checkCode($cardId, array $code)
{ {
$url = "https://api.weixin.qq.com/card/code/checkcode?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/card/code/checkcode?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, ['card_id' => $cardId, 'code' => $code]);
return $this->httpPostForJson($url, ['card_id' => $card_id, 'code' => $code]);
} }
/** /**
* 图文消息群发卡券 * 图文消息群发卡券
* @param string $card_id * @param string $cardId
* @return array * @return array
* @throws Exceptions\InvalidResponseException * @throws Exceptions\InvalidResponseException
* @throws Exceptions\LocalCacheException * @throws Exceptions\LocalCacheException
*/ */
public function getNewsHtml($card_id) public function getNewsHtml($cardId)
{ {
$url = "https://api.weixin.qq.com/card/mpnews/gethtml?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/card/mpnews/gethtml?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, ['card_id' => $cardId]);
return $this->httpPostForJson($url, ['card_id' => $card_id]);
} }
/** /**
@ -166,27 +157,25 @@ class Card extends BasicWeChat
public function setTestWhiteList($openids = [], $usernames = []) public function setTestWhiteList($openids = [], $usernames = [])
{ {
$url = "https://api.weixin.qq.com/card/testwhitelist/set?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/card/testwhitelist/set?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, ['openid' => $openids, 'username' => $usernames]);
return $this->httpPostForJson($url, ['openid' => $openids, 'username' => $usernames]);
} }
/** /**
* 线下核销查询Code * 线下核销查询Code
* @param string $code 单张卡券的唯一标准 * @param string $code 单张卡券的唯一标准
* @param string $card_id 卡券ID代表一类卡券。自定义code卡券必填 * @param string $cardId 卡券ID代表一类卡券。自定义code卡券必填
* @param bool $check_consume 是否校验code核销状态填入true和false时的code异常状态返回数据不同 * @param bool $checkConsume 是否校验code核销状态填入true和false时的code异常状态返回数据不同
* @return array * @return array
* @throws Exceptions\InvalidResponseException * @throws Exceptions\InvalidResponseException
* @throws Exceptions\LocalCacheException * @throws Exceptions\LocalCacheException
*/ */
public function getCode($code, $card_id = null, $check_consume = null) public function getCode($code, $cardId = null, $checkConsume = null)
{ {
$data = ['code' => $code]; $data = ['code' => $code];
is_null($card_id) || $data['card_id'] = $card_id; is_null($cardId) || $data['card_id'] = $cardId;
is_null($check_consume) || $data['check_consume'] = $check_consume; is_null($checkConsume) || $data['check_consume'] = $checkConsume;
$url = "https://api.weixin.qq.com/card/code/get?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/card/code/get?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, $data);
return $this->httpPostForJson($url, $data);
} }
/** /**
@ -202,86 +191,80 @@ class Card extends BasicWeChat
$data = ['code' => $code]; $data = ['code' => $code];
is_null($card_id) || $data['card_id'] = $card_id; is_null($card_id) || $data['card_id'] = $card_id;
$url = "https://api.weixin.qq.com/card/code/consume?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/card/code/consume?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, $data);
return $this->httpPostForJson($url, $data);
} }
/** /**
* Code解码接口 * Code解码接口
* @param string $encrypt_code * @param string $encryptCode
* @return array * @return array
* @throws Exceptions\InvalidResponseException * @throws Exceptions\InvalidResponseException
* @throws Exceptions\LocalCacheException * @throws Exceptions\LocalCacheException
*/ */
public function decrypt($encrypt_code) public function decrypt($encryptCode)
{ {
$url = "https://api.weixin.qq.com/card/code/decrypt?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/card/code/decrypt?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, ['encrypt_code' => $encryptCode]);
return $this->httpPostForJson($url, ['encrypt_code' => $encrypt_code]);
} }
/** /**
* 获取用户已领取卡券接口 * 获取用户已领取卡券接口
* @param string $openid * @param string $openid
* @param null|string $card_id * @param null|string $cardId
* @return array * @return array
* @throws Exceptions\InvalidResponseException * @throws Exceptions\InvalidResponseException
* @throws Exceptions\LocalCacheException * @throws Exceptions\LocalCacheException
*/ */
public function getCardList($openid, $card_id = null) public function getCardList($openid, $cardId = null)
{ {
$data = ['openid' => $openid]; $data = ['openid' => $openid];
is_null($card_id) || $data['card_id'] = $card_id; is_null($cardId) || $data['card_id'] = $cardId;
$url = "https://api.weixin.qq.com/card/user/getcardlist?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/card/user/getcardlist?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, $data);
return $this->httpPostForJson($url, $data);
} }
/** /**
* 查看卡券详情 * 查看卡券详情
* @param string $card_id * @param string $cardId
* @return array * @return array
* @throws Exceptions\InvalidResponseException * @throws Exceptions\InvalidResponseException
* @throws Exceptions\LocalCacheException * @throws Exceptions\LocalCacheException
*/ */
public function getCard($card_id) public function getCard($cardId)
{ {
$url = "https://api.weixin.qq.com/card/get?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/card/get?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, ['card_id' => $cardId]);
return $this->httpPostForJson($url, ['card_id' => $card_id]);
} }
/** /**
* 批量查询卡券列表 * 批量查询卡券列表
* @param int $offset 查询卡列表的起始偏移量从0开始即offset: 5是指从从列表里的第六个开始读取 * @param int $offset 查询卡列表的起始偏移量从0开始即offset: 5是指从从列表里的第六个开始读取
* @param int $count 需要查询的卡片的数量数量最大50 * @param int $count 需要查询的卡片的数量数量最大50
* @param array $status_list 支持开发者拉出指定状态的卡券列表 * @param array $statusList 支持开发者拉出指定状态的卡券列表
* @return array * @return array
* @throws Exceptions\InvalidResponseException * @throws Exceptions\InvalidResponseException
* @throws Exceptions\LocalCacheException * @throws Exceptions\LocalCacheException
*/ */
public function batchGet($offset, $count = 50, array $status_list = []) public function batchGet($offset, $count = 50, array $statusList = [])
{ {
$data = ['offset' => $offset, 'count' => $count]; $data = ['offset' => $offset, 'count' => $count];
empty($status_list) || $data['status_list'] = $status_list; empty($statusList) || $data['status_list'] = $statusList;
$url = "https://api.weixin.qq.com/card/batchget?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/card/batchget?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, $data);
return $this->httpPostForJson($url, $data);
} }
/** /**
* 更改卡券信息接口 * 更改卡券信息接口
* @param string $card_id * @param string $cardId
* @param array $member_card * @param array $memberCard
* @return array * @return array
* @throws Exceptions\InvalidResponseException * @throws Exceptions\InvalidResponseException
* @throws Exceptions\LocalCacheException * @throws Exceptions\LocalCacheException
*/ */
public function updateCard($card_id, array $member_card) public function updateCard($cardId, array $memberCard)
{ {
$url = "https://api.weixin.qq.com/card/update?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/card/update?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, ['card_id' => $cardId, 'member_card' => $memberCard]);
return $this->httpPostForJson($url, ['card_id' => $card_id, 'member_card' => $member_card]);
} }
/** /**
@ -296,11 +279,10 @@ class Card extends BasicWeChat
public function modifyStock($card_id, $increase_stock_value = null, $reduce_stock_value = null) public function modifyStock($card_id, $increase_stock_value = null, $reduce_stock_value = null)
{ {
$data = ['card_id' => $card_id]; $data = ['card_id' => $card_id];
is_null($increase_stock_value) || $data['increase_stock_value'] = $increase_stock_value;
is_null($reduce_stock_value) || $data['reduce_stock_value'] = $reduce_stock_value; is_null($reduce_stock_value) || $data['reduce_stock_value'] = $reduce_stock_value;
is_null($increase_stock_value) || $data['increase_stock_value'] = $increase_stock_value;
$url = "https://api.weixin.qq.com/card/modifystock?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/card/modifystock?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, $data);
return $this->httpPostForJson($url, $data);
} }
/** /**
@ -317,76 +299,71 @@ class Card extends BasicWeChat
$data = ['code' => $code, 'new_code' => $new_code]; $data = ['code' => $code, 'new_code' => $new_code];
is_null($card_id) || $data['card_id'] = $card_id; is_null($card_id) || $data['card_id'] = $card_id;
$url = "https://api.weixin.qq.com/card/code/update?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/card/code/update?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, $data);
return $this->httpPostForJson($url, $data);
} }
/** /**
* 删除卡券接口 * 删除卡券接口
* @param string $card_id * @param string $cardId
* @return array * @return array
* @throws Exceptions\InvalidResponseException * @throws Exceptions\InvalidResponseException
* @throws Exceptions\LocalCacheException * @throws Exceptions\LocalCacheException
*/ */
public function deleteCard($card_id) public function deleteCard($cardId)
{ {
$url = "https://api.weixin.qq.com/card/delete?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/card/delete?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, ['card_id' => $cardId]);
return $this->httpPostForJson($url, ['card_id' => $card_id]);
} }
/** /**
* 设置卡券失效接口 * 设置卡券失效接口
* @param string $code * @param string $code
* @param string $card_id * @param string $cardId
* @param null|string $reason * @param null|string $reason
* @return array * @return array
* @throws Exceptions\InvalidResponseException * @throws Exceptions\InvalidResponseException
* @throws Exceptions\LocalCacheException * @throws Exceptions\LocalCacheException
*/ */
public function unAvailable($code, $card_id, $reason = null) public function unAvailable($code, $cardId, $reason = null)
{ {
$data = ['code' => $code, 'card_id' => $card_id]; $data = ['code' => $code, 'card_id' => $cardId];
is_null($reason) || $data['reason'] = $reason; is_null($reason) || $data['reason'] = $reason;
$url = "https://api.weixin.qq.com/card/code/unavailable?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/card/code/unavailable?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, $data);
return $this->httpPostForJson($url, $data);
} }
/** /**
* 拉取卡券概况数据接口 * 拉取卡券概况数据接口
* @param string $begin_date 查询数据的起始时间 * @param string $beginDate 查询数据的起始时间
* @param string $end_date 查询数据的截至时间 * @param string $endDate 查询数据的截至时间
* @param string $cond_source 卡券来源(0为公众平台创建的卡券数据 1是API创建的卡券数据) * @param string $condSource 卡券来源(0为公众平台创建的卡券数据 1是API创建的卡券数据)
* @return array * @return array
* @throws Exceptions\InvalidResponseException * @throws Exceptions\InvalidResponseException
* @throws Exceptions\LocalCacheException * @throws Exceptions\LocalCacheException
*/ */
public function getCardBizuininfo($begin_date, $end_date, $cond_source) public function getCardBizuininfo($beginDate, $endDate, $condSource)
{ {
$data = ['begin_date' => $begin_date, 'end_date' => $end_date, 'cond_source' => $cond_source];
$url = "https://api.weixin.qq.com/datacube/getcardbizuininfo?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/datacube/getcardbizuininfo?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); $data = ['begin_date' => $beginDate, 'end_date' => $endDate, 'cond_source' => $condSource];
return $this->httpPostForJson($url, $data); return $this->callPostApi($url, $data);
} }
/** /**
* 获取免费券数据接口 * 获取免费券数据接口
* @param string $begin_date 查询数据的起始时间 * @param string $beginDate 查询数据的起始时间
* @param string $end_date 查询数据的截至时间 * @param string $endDate 查询数据的截至时间
* @param integer $cond_source 卡券来源0为公众平台创建的卡券数据、1是API创建的卡券数据 * @param integer $condSource 卡券来源0为公众平台创建的卡券数据、1是API创建的卡券数据
* @param null $card_id 卡券ID * @param null $cardId 卡券ID
* @return array * @return array
* @throws Exceptions\InvalidResponseException * @throws Exceptions\InvalidResponseException
* @throws Exceptions\LocalCacheException * @throws Exceptions\LocalCacheException
*/ */
public function getCardCardinfo($begin_date, $end_date, $cond_source, $card_id = null) public function getCardCardinfo($beginDate, $endDate, $condSource, $cardId = null)
{ {
$data = ['begin_date' => $begin_date, 'end_date' => $end_date, 'cond_source' => $cond_source];
is_null($card_id) || $data['card_id'] = $card_id;
$url = "https://api.weixin.qq.com/datacube/getcardcardinfo?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/datacube/getcardcardinfo?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); $data = ['begin_date' => $beginDate, 'end_date' => $endDate, 'cond_source' => $condSource];
return $this->httpPostForJson($url, $data); is_null($cardId) || $data['card_id'] = $cardId;
return $this->callPostApi($url, $data);
} }
@ -400,8 +377,7 @@ class Card extends BasicWeChat
public function activateMemberCard(array $data) public function activateMemberCard(array $data)
{ {
$url = 'https://api.weixin.qq.com/card/membercard/activate?access_token=ACCESS_TOKEN'; $url = 'https://api.weixin.qq.com/card/membercard/activate?access_token=ACCESS_TOKEN';
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, $data);
return $this->httpPostForJson($url, $data);
} }
/** /**
@ -415,23 +391,21 @@ class Card extends BasicWeChat
public function setActivateMemberCardUser(array $data) public function setActivateMemberCardUser(array $data)
{ {
$url = 'https://api.weixin.qq.com/card/membercard/activateuserform/set?access_token=ACCESS_TOKEN'; $url = 'https://api.weixin.qq.com/card/membercard/activateuserform/set?access_token=ACCESS_TOKEN';
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, $data);
return $this->httpPostForJson($url, $data);
} }
/** /**
* 获取用户提交资料 * 获取用户提交资料
* 根据activate_ticket获取到用户填写的信息 * 根据activate_ticket获取到用户填写的信息
* @param string $activate_ticket * @param string $activateTicket
* @return array * @return array
* @throws Exceptions\InvalidResponseException * @throws Exceptions\InvalidResponseException
* @throws Exceptions\LocalCacheException * @throws Exceptions\LocalCacheException
*/ */
public function getActivateMemberCardTempinfo($activate_ticket) public function getActivateMemberCardTempinfo($activateTicket)
{ {
$url = 'https://api.weixin.qq.com/card/membercard/activatetempinfo/get?access_token=ACCESS_TOKEN'; $url = 'https://api.weixin.qq.com/card/membercard/activatetempinfo/get?access_token=ACCESS_TOKEN';
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, ['activate_ticket' => $activateTicket]);
return $this->httpPostForJson($url, ['activate_ticket' => $activate_ticket]);
} }
/** /**
@ -444,58 +418,54 @@ class Card extends BasicWeChat
public function updateMemberCardUser(array $data) public function updateMemberCardUser(array $data)
{ {
$url = 'https://api.weixin.qq.com/card/membercard/updateuser?access_token=ACCESS_TOKEN'; $url = 'https://api.weixin.qq.com/card/membercard/updateuser?access_token=ACCESS_TOKEN';
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, $data);
return $this->httpPostForJson($url, $data);
} }
/** /**
* 拉取会员卡概况数据接口 * 拉取会员卡概况数据接口
* @param string $begin_date 查询数据的起始时间 * @param string $beginDate 查询数据的起始时间
* @param string $end_date 查询数据的截至时间 * @param string $endDate 查询数据的截至时间
* @param string $cond_source 卡券来源(0为公众平台创建的卡券数据 1是API创建的卡券数据) * @param string $condSource 卡券来源(0为公众平台创建的卡券数据 1是API创建的卡券数据)
* @return array * @return array
* @throws Exceptions\InvalidResponseException * @throws Exceptions\InvalidResponseException
* @throws Exceptions\LocalCacheException * @throws Exceptions\LocalCacheException
*/ */
public function getCardMemberCardinfo($begin_date, $end_date, $cond_source) public function getCardMemberCardinfo($beginDate, $endDate, $condSource)
{ {
$data = ['begin_date' => $begin_date, 'end_date' => $end_date, 'cond_source' => $cond_source];
$url = "https://api.weixin.qq.com/datacube/getcardmembercardinfo?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/datacube/getcardmembercardinfo?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); $data = ['begin_date' => $beginDate, 'end_date' => $endDate, 'cond_source' => $condSource];
return $this->httpPostForJson($url, $data); return $this->callPostApi($url, $data);
} }
/** /**
* 拉取单张会员卡数据接口 * 拉取单张会员卡数据接口
* @param string $begin_date 查询数据的起始时间 * @param string $beginDate 查询数据的起始时间
* @param string $end_date 查询数据的截至时间 * @param string $endDate 查询数据的截至时间
* @param string $card_id 卡券id * @param string $cardId 卡券id
* @return array * @return array
* @throws Exceptions\InvalidResponseException * @throws Exceptions\InvalidResponseException
* @throws Exceptions\LocalCacheException * @throws Exceptions\LocalCacheException
*/ */
public function getCardMemberCardDetail($begin_date, $end_date, $card_id) public function getCardMemberCardDetail($beginDate, $endDate, $cardId)
{ {
$data = ['begin_date' => $begin_date, 'end_date' => $end_date, 'card_id' => $card_id];
$url = "https://api.weixin.qq.com/datacube/getcardmembercarddetail?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/datacube/getcardmembercarddetail?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); $data = ['begin_date' => $beginDate, 'end_date' => $endDate, 'card_id' => $cardId];
return $this->httpPostForJson($url, $data); return $this->callPostApi($url, $data);
} }
/** /**
* 拉取会员信息(积分查询)接口 * 拉取会员信息(积分查询)接口
* @param string $card_id 查询会员卡的cardid * @param string $cardId 查询会员卡的cardid
* @param string $code 所查询用户领取到的code值 * @param string $code 所查询用户领取到的code值
* @return array * @return array
* @throws Exceptions\InvalidResponseException * @throws Exceptions\InvalidResponseException
* @throws Exceptions\LocalCacheException * @throws Exceptions\LocalCacheException
*/ */
public function getCardMemberCard($card_id, $code) public function getCardMemberCard($cardId, $code)
{ {
$data = ['card_id' => $card_id, 'code' => $code]; $data = ['card_id' => $cardId, 'code' => $code];
$url = "https://api.weixin.qq.com/card/membercard/userinfo/get?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/card/membercard/userinfo/get?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, $data);
return $this->httpPostForJson($url, $data);
} }
/** /**
@ -508,36 +478,33 @@ class Card extends BasicWeChat
public function payGiftCard(array $data) public function payGiftCard(array $data)
{ {
$url = "https://api.weixin.qq.com/card/paygiftcard/add?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/card/paygiftcard/add?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, $data);
return $this->httpPostForJson($url, $data);
} }
/** /**
* 删除支付后投放卡券规则 * 删除支付后投放卡券规则
* @param integer $rule_id 支付即会员的规则名称 * @param integer $ruleId 支付即会员的规则名称
* @return array * @return array
* @throws Exceptions\InvalidResponseException * @throws Exceptions\InvalidResponseException
* @throws Exceptions\LocalCacheException * @throws Exceptions\LocalCacheException
*/ */
public function delPayGiftCard($rule_id) public function delPayGiftCard($ruleId)
{ {
$url = "https://api.weixin.qq.com/card/paygiftcard/add?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/card/paygiftcard/add?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, ['rule_id' => $ruleId]);
return $this->httpPostForJson($url, ['rule_id' => $rule_id]);
} }
/** /**
* 查询支付后投放卡券规则详情 * 查询支付后投放卡券规则详情
* @param integer $rule_id 要查询规则id * @param integer $ruleId 要查询规则id
* @return array * @return array
* @throws Exceptions\InvalidResponseException * @throws Exceptions\InvalidResponseException
* @throws Exceptions\LocalCacheException * @throws Exceptions\LocalCacheException
*/ */
public function getPayGiftCard($rule_id) public function getPayGiftCard($ruleId)
{ {
$url = "https://api.weixin.qq.com/card/paygiftcard/getbyid?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/card/paygiftcard/getbyid?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, ['rule_id' => $ruleId]);
return $this->httpPostForJson($url, ['rule_id' => $rule_id]);
} }
/** /**
@ -551,10 +518,9 @@ class Card extends BasicWeChat
*/ */
public function batchGetPayGiftCard($offset = 0, $count = 10, $effective = true) public function batchGetPayGiftCard($offset = 0, $count = 10, $effective = true)
{ {
$data = ['type' => 'RULE_TYPE_PAY_MEMBER_CARD', 'offset' => $offset, 'count' => $count, 'effective' => $effective];
$url = "https://api.weixin.qq.com/card/paygiftcard/batchget?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/card/paygiftcard/batchget?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); $data = ['type' => 'RULE_TYPE_PAY_MEMBER_CARD', 'offset' => $offset, 'count' => $count, 'effective' => $effective];
return $this->httpPostForJson($url, $data); return $this->callPostApi($url, $data);
} }
/** /**
@ -567,8 +533,7 @@ class Card extends BasicWeChat
public function addActivity(array $data) public function addActivity(array $data)
{ {
$url = "https://api.weixin.qq.com/card/mkt/activity/create?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/card/mkt/activity/create?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, $data);
return $this->httpPostForJson($url, $data);
} }
/** /**
@ -580,23 +545,21 @@ class Card extends BasicWeChat
public function payActivate() public function payActivate()
{ {
$url = "https://api.weixin.qq.com/card/pay/activate?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/card/pay/activate?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callGetApi($url);
return $this->httpGetForJson($url);
} }
/** /**
* 对优惠券批价 * 对优惠券批价
* @param string $card_id 需要来配置库存的card_id * @param string $cardId 需要来配置库存的card_id
* @param integer $quantity 本次需要兑换的库存数目 * @param integer $quantity 本次需要兑换的库存数目
* @return array * @return array
* @throws Exceptions\InvalidResponseException * @throws Exceptions\InvalidResponseException
* @throws Exceptions\LocalCacheException * @throws Exceptions\LocalCacheException
*/ */
public function getPayprice($card_id, $quantity) public function getPayprice($cardId, $quantity)
{ {
$url = "POST https://api.weixin.qq.com/card/pay/getpayprice?access_token=ACCESS_TOKEN"; $url = "POST https://api.weixin.qq.com/card/pay/getpayprice?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, ['card_id' => $cardId, 'quantity' => $quantity]);
return $this->httpPostForJson($url, ['card_id' => $card_id, 'quantity' => $quantity]);
} }
/** /**
@ -608,53 +571,49 @@ class Card extends BasicWeChat
public function getCoinsInfo() public function getCoinsInfo()
{ {
$url = "https://api.weixin.qq.com/card/pay/getcoinsinfo?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/card/pay/getcoinsinfo?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callGetApi($url);
return $this->httpGetForJson($url);
} }
/** /**
* 确认兑换库存接口 * 确认兑换库存接口
* @param string $card_id 需要来兑换库存的card_id * @param string $cardId 需要来兑换库存的card_id
* @param integer $quantity 本次需要兑换的库存数目 * @param integer $quantity 本次需要兑换的库存数目
* @param string $order_id 仅可以使用上面得到的订单号,保证批价有效性 * @param string $orderId 仅可以使用上面得到的订单号,保证批价有效性
* @return array * @return array
* @throws Exceptions\InvalidResponseException * @throws Exceptions\InvalidResponseException
* @throws Exceptions\LocalCacheException * @throws Exceptions\LocalCacheException
*/ */
public function payConfirm($card_id, $quantity, $order_id) public function payConfirm($cardId, $quantity, $orderId)
{ {
$data = ['card_id' => $card_id, 'quantity' => $quantity, 'order_id' => $order_id];
$url = "https://api.weixin.qq.com/card/pay/confirm?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/card/pay/confirm?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); $data = ['card_id' => $cardId, 'quantity' => $quantity, 'order_id' => $orderId];
return $this->httpPostForJson($url, $data); return $this->callPostApi($url, $data);
} }
/** /**
* 充值券点接口 * 充值券点接口
* @param integer $coin_count * @param integer $coinCount
* @return array * @return array
* @throws Exceptions\InvalidResponseException * @throws Exceptions\InvalidResponseException
* @throws Exceptions\LocalCacheException * @throws Exceptions\LocalCacheException
*/ */
public function payRecharge($coin_count) public function payRecharge($coinCount)
{ {
$url = "https://api.weixin.qq.com/card/pay/recharge?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/card/pay/recharge?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, ['coin_count' => $coinCount]);
return $this->httpPostForJson($url, ['coin_count' => $coin_count]);
} }
/** /**
* 查询订单详情接口 * 查询订单详情接口
* @param string $order_id * @param string $orderId
* @return array * @return array
* @throws Exceptions\InvalidResponseException * @throws Exceptions\InvalidResponseException
* @throws Exceptions\LocalCacheException * @throws Exceptions\LocalCacheException
*/ */
public function payGetOrder($order_id) public function payGetOrder($orderId)
{ {
$url = "https://api.weixin.qq.com/card/pay/getorder?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/card/pay/getorder?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, ['order_id' => $orderId]);
return $this->httpPostForJson($url, ['order_id' => $order_id]);
} }
/** /**
@ -667,8 +626,6 @@ class Card extends BasicWeChat
public function payGetList(array $data) public function payGetList(array $data)
{ {
$url = "https://api.weixin.qq.com/card/pay/getorderlist?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/card/pay/getorderlist?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, $data);
return $this->httpPostForJson($url, $data);
} }
} }

View File

@ -36,55 +36,49 @@ class Custom extends BasicWeChat
*/ */
public function addAccount($kf_account, $nickname) public function addAccount($kf_account, $nickname)
{ {
$data = ['kf_account' => $kf_account, 'nickname' => $nickname];
$url = "https://api.weixin.qq.com/customservice/kfaccount/add?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/customservice/kfaccount/add?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, ['kf_account' => $kf_account, 'nickname' => $nickname]);
return $this->httpPostForJson($url, $data);
} }
/** /**
* 修改客服帐号 * 修改客服帐号
* @param string $kf_account 客服账号 * @param string $kfAccount 客服账号
* @param string $nickname 客服昵称 * @param string $nickname 客服昵称
* @return array * @return array
* @throws Exceptions\InvalidResponseException * @throws Exceptions\InvalidResponseException
* @throws Exceptions\LocalCacheException * @throws Exceptions\LocalCacheException
*/ */
public function updateAccount($kf_account, $nickname) public function updateAccount($kfAccount, $nickname)
{ {
$data = ['kf_account' => $kf_account, 'nickname' => $nickname];
$url = "https://api.weixin.qq.com/customservice/kfaccount/update?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/customservice/kfaccount/update?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, ['kf_account' => $kfAccount, 'nickname' => $nickname]);
return $this->httpPostForJson($url, $data);
} }
/** /**
* 删除客服帐号 * 删除客服帐号
* @param string $kf_account 客服账号 * @param string $kfAccount 客服账号
* @return array * @return array
* @throws Exceptions\InvalidResponseException * @throws Exceptions\InvalidResponseException
* @throws Exceptions\LocalCacheException * @throws Exceptions\LocalCacheException
*/ */
public function deleteAccount($kf_account) public function deleteAccount($kfAccount)
{ {
$data = ['kf_account' => $kf_account];
$url = "https://api.weixin.qq.com/customservice/kfaccount/del?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/customservice/kfaccount/del?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, ['kf_account' => $kfAccount]);
return $this->httpPostForJson($url, $data);
} }
/** /**
* 邀请绑定客服帐号 * 邀请绑定客服帐号
* @param string $kf_account 完整客服帐号,格式为:帐号前缀@公众号微信号 * @param string $kfAccount 完整客服帐号,格式为:帐号前缀@公众号微信号
* @param string $invite_wx 接收绑定邀请的客服微信号 * @param string $invite_wx 接收绑定邀请的客服微信号
* @return array * @return array
* @throws Exceptions\InvalidResponseException * @throws Exceptions\InvalidResponseException
* @throws Exceptions\LocalCacheException * @throws Exceptions\LocalCacheException
*/ */
public function inviteWorker($kf_account, $invite_wx) public function inviteWorker($kfAccount, $invite_wx)
{ {
$url = 'https://api.weixin.qq.com/customservice/kfaccount/inviteworker?access_token=ACCESS_TOKEN'; $url = 'https://api.weixin.qq.com/customservice/kfaccount/inviteworker?access_token=ACCESS_TOKEN';
return $this->callPostApi($url, ['kf_account' => $kf_account, 'invite_wx' => $invite_wx]); return $this->callPostApi($url, ['kf_account' => $kfAccount, 'invite_wx' => $invite_wx]);
} }
/** /**
@ -96,8 +90,7 @@ class Custom extends BasicWeChat
public function getAccountList() public function getAccountList()
{ {
$url = "https://api.weixin.qq.com/cgi-bin/customservice/getkflist?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/cgi-bin/customservice/getkflist?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callGetApi($url);
return $this->httpGetForJson($url);
} }
/** /**
@ -110,9 +103,8 @@ class Custom extends BasicWeChat
*/ */
public function uploadHeadimg($kf_account, $image) public function uploadHeadimg($kf_account, $image)
{ {
$url = "http://api.weixin.qq.com/customservice/kfaccount/uploadheadimg?access_token=ACCESS_TOKEN&kf_account={$kf_account}"; $url = "https://api.weixin.qq.com/customservice/kfaccount/uploadheadimg?access_token=ACCESS_TOKEN&kf_account={$kf_account}";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, ['media' => Tools::createCurlFile($image)], false);
return $this->httpPostForJson($url, ['media' => Tools::createCurlFile($image)]);
} }
/** /**
@ -125,8 +117,7 @@ class Custom extends BasicWeChat
public function send(array $data) public function send(array $data)
{ {
$url = "https://api.weixin.qq.com/cgi-bin/message/custom/send?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/cgi-bin/message/custom/send?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, $data);
return $this->httpPostForJson($url, $data);
} }
/** /**
@ -140,8 +131,7 @@ class Custom extends BasicWeChat
public function typing($openid, $command = 'Typing') public function typing($openid, $command = 'Typing')
{ {
$url = "https://api.weixin.qq.com/cgi-bin/message/custom/typing?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/cgi-bin/message/custom/typing?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, ['touser' => $openid, 'command' => $command]);
return $this->httpPostForJson($url, ['touser' => $openid, 'command' => $command]);
} }
/** /**
@ -154,8 +144,7 @@ class Custom extends BasicWeChat
public function massSendAll(array $data) public function massSendAll(array $data)
{ {
$url = "https://api.weixin.qq.com/cgi-bin/message/mass/sendall?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/cgi-bin/message/mass/sendall?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, $data);
return $this->httpPostForJson($url, $data);
} }
/** /**
@ -168,8 +157,7 @@ class Custom extends BasicWeChat
public function massSend(array $data) public function massSend(array $data)
{ {
$url = "https://api.weixin.qq.com/cgi-bin/message/mass/send?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/cgi-bin/message/mass/send?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, $data);
return $this->httpPostForJson($url, $data);
} }
/** /**
@ -185,8 +173,7 @@ class Custom extends BasicWeChat
$data = ['msg_id' => $msg_id]; $data = ['msg_id' => $msg_id];
is_null($article_idx) || $data['article_idx'] = $article_idx; is_null($article_idx) || $data['article_idx'] = $article_idx;
$url = "https://api.weixin.qq.com/cgi-bin/message/mass/delete?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/cgi-bin/message/mass/delete?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, $data);
return $this->httpPostForJson($url, $data);
} }
/** /**
@ -199,22 +186,20 @@ class Custom extends BasicWeChat
public function massPreview(array $data) public function massPreview(array $data)
{ {
$url = "https://api.weixin.qq.com/cgi-bin/message/mass/preview?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/cgi-bin/message/mass/preview?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, $data);
return $this->httpPostForJson($url, $data);
} }
/** /**
* 查询群发消息发送状态【订阅号与服务号认证后均可用】 * 查询群发消息发送状态【订阅号与服务号认证后均可用】
* @param integer $msg_id 群发消息后返回的消息id * @param integer $msgId 群发消息后返回的消息id
* @return array * @return array
* @throws Exceptions\InvalidResponseException * @throws Exceptions\InvalidResponseException
* @throws Exceptions\LocalCacheException * @throws Exceptions\LocalCacheException
*/ */
public function massGet($msg_id) public function massGet($msgId)
{ {
$url = "https://api.weixin.qq.com/cgi-bin/message/mass/get?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/cgi-bin/message/mass/get?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, ['msg_id' => $msgId]);
return $this->httpPostForJson($url, ['msg_id' => $msg_id]);
} }
/** /**
@ -226,8 +211,7 @@ class Custom extends BasicWeChat
public function massGetSeed() public function massGetSeed()
{ {
$url = "https://api.weixin.qq.com/cgi-bin/message/mass/speed/get?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/cgi-bin/message/mass/speed/get?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, []);
return $this->httpPostForJson($url, []);
} }
/** /**
@ -240,9 +224,6 @@ class Custom extends BasicWeChat
public function massSetSeed($speed) public function massSetSeed($speed)
{ {
$url = "https://api.weixin.qq.com/cgi-bin/message/mass/speed/set?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/cgi-bin/message/mass/speed/set?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, ['speed' => $speed]);
return $this->httpPostForJson($url, ['speed' => $speed]);
} }
} }

View File

@ -36,38 +36,34 @@ class Draft extends BasicWeChat
public function add($articles) public function add($articles)
{ {
$url = "https://api.weixin.qq.com/cgi-bin/draft/add?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/cgi-bin/draft/add?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, ['articles' => $articles]);
return $this->httpPostForJson($url, ['articles' => $articles]);
} }
/** /**
* 获取草稿 * 获取草稿
* @param string $media_id * @param string $mediaId
* @param string $outType 返回处理函数 * @param string $outType 返回处理函数
* @return array * @return array
* @throws \WeChat\Exceptions\InvalidResponseException * @throws \WeChat\Exceptions\InvalidResponseException
* @throws \WeChat\Exceptions\LocalCacheException * @throws \WeChat\Exceptions\LocalCacheException
*/ */
public function get($media_id, $outType = null) public function get($mediaId, $outType = null)
{ {
$url = "https://api.weixin.qq.com/cgi-bin/draft/get?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/cgi-bin/draft/get?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, ['media_id' => $mediaId]);
return $this->httpPostForJson($url, ['media_id' => $media_id]);
} }
/** /**
* 删除草稿 * 删除草稿
* @param string $media_id * @param string $mediaId
* @return array * @return array
* @throws \WeChat\Exceptions\InvalidResponseException * @throws \WeChat\Exceptions\InvalidResponseException
* @throws \WeChat\Exceptions\LocalCacheException * @throws \WeChat\Exceptions\LocalCacheException
*/ */
public function delete($media_id) public function delete($mediaId)
{ {
$url = "https://api.weixin.qq.com/cgi-bin/draft/delete?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/cgi-bin/draft/delete?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, ['media_id' => $mediaId]);
return $this->httpPostForJson($url, ['media_id' => $media_id]);
} }
/** /**
@ -80,8 +76,7 @@ class Draft extends BasicWeChat
public function addNews($data) public function addNews($data)
{ {
$url = "https://api.weixin.qq.com/cgi-bin/material/add_news?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/cgi-bin/material/add_news?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, $data);
return $this->httpPostForJson($url, $data);
} }
/** /**
@ -95,10 +90,9 @@ class Draft extends BasicWeChat
*/ */
public function update($media_id, $index, $articles) public function update($media_id, $index, $articles)
{ {
$data = ['media_id' => $media_id, 'index' => $index, 'articles' => $articles];
$url = "https://api.weixin.qq.com/cgi-bin/draft/update?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/cgi-bin/draft/update?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); $data = ['media_id' => $media_id, 'index' => $index, 'articles' => $articles];
return $this->httpPostForJson($url, $data); return $this->callPostApi($url, $data);
} }
/** /**
@ -110,24 +104,21 @@ class Draft extends BasicWeChat
public function getCount() public function getCount()
{ {
$url = "https://api.weixin.qq.com/cgi-bin/draft/count?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/cgi-bin/draft/count?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callGetApi($url);
return $this->httpGetForJson($url);
} }
/** /**
* 获取草稿列表 * 获取草稿列表
* @param int $offset 从全部素材的该偏移位置开始返回0表示从第一个素材返回 * @param int $offset 从全部素材的该偏移位置开始返回0表示从第一个素材返回
* @param int $count 返回素材的数量取值在1到20之间 * @param int $count 返回素材的数量取值在1到20之间
* @param int $no_content 1 表示不返回 content 字段0 表示正常返回,默认为 0 * @param int $noContent 1 表示不返回 content 字段0 表示正常返回,默认为 0
* @return array * @return array
* @throws \WeChat\Exceptions\InvalidResponseException * @throws \WeChat\Exceptions\InvalidResponseException
* @throws \WeChat\Exceptions\LocalCacheException * @throws \WeChat\Exceptions\LocalCacheException
*/ */
public function batchGet($offset = 0, $count = 20, $no_content = 0) public function batchGet($offset = 0, $count = 20, $noContent = 0)
{ {
$url = "https://api.weixin.qq.com/cgi-bin/draft/batchget?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/cgi-bin/draft/batchget?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, ['no_content' => $noContent, 'offset' => $offset, 'count' => $count]);
return $this->httpPostForJson($url, ['no_content' => $no_content, 'offset' => $offset, 'count' => $count]);
} }
} }

View File

@ -29,75 +29,70 @@ class Freepublish extends BasicWeChat
/** /**
* 发布接口 * 发布接口
* 开发者需要先将图文素材以草稿的形式保存(见“草稿箱/新建草稿”,如需从已保存的草稿中选择,见“草稿箱/获取草稿列表”) * 开发者需要先将图文素材以草稿的形式保存(见“草稿箱/新建草稿”,如需从已保存的草稿中选择,见“草稿箱/获取草稿列表”)
* @param mixed $media_id 选择要发布的草稿的media_id * @param mixed $mediaId 选择要发布的草稿的media_id
* @return array * @return array
* @throws \WeChat\Exceptions\InvalidResponseException * @throws \WeChat\Exceptions\InvalidResponseException
* @throws \WeChat\Exceptions\LocalCacheException * @throws \WeChat\Exceptions\LocalCacheException
*/ */
public function submit($media_id) public function submit($mediaId)
{ {
$url = "https://api.weixin.qq.com/cgi-bin/freepublish/submit?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/cgi-bin/freepublish/submit?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, ['media_id' => $mediaId]);
return $this->httpPostForJson($url, ['media_id' => $media_id]);
} }
/** /**
* 发布状态轮询接口 * 发布状态轮询接口
* @param mixed $publish_id * @param mixed $publishId
* @return array * @return array
* @throws \WeChat\Exceptions\InvalidResponseException * @throws \WeChat\Exceptions\InvalidResponseException
* @throws \WeChat\Exceptions\LocalCacheException * @throws \WeChat\Exceptions\LocalCacheException
*/ */
public function get($publish_id) public function get($publishId)
{ {
$url = "https://api.weixin.qq.com/cgi-bin/freepublish/get?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/cgi-bin/freepublish/get?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, ['publish_id' => $publishId]);
return $this->httpPostForJson($url, ['publish_id' => $publish_id]);
} }
/** /**
* 删除发布 * 删除发布
* 发布成功之后,随时可以通过该接口删除。此操作不可逆,请谨慎操作。 * 发布成功之后,随时可以通过该接口删除。此操作不可逆,请谨慎操作。
* @param mixed $article_id 成功发布时返回的 article_id * @param mixed $articleId 成功发布时返回的 article_id
* @param int $index 要删除的文章在图文消息中的位置第一篇编号为1该字段不填或填0会删除全部文章 * @param int $index 要删除的文章在图文消息中的位置第一篇编号为1该字段不填或填0会删除全部文章
* @return array * @return array
* @throws \WeChat\Exceptions\InvalidResponseException * @throws \WeChat\Exceptions\InvalidResponseException
* @throws \WeChat\Exceptions\LocalCacheException * @throws \WeChat\Exceptions\LocalCacheException
*/ */
public function delete($article_id, $index = 0) public function delete($articleId, $index = 0)
{ {
$url = "https://api.weixin.qq.com/cgi-bin/freepublish/delete?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/cgi-bin/freepublish/delete?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, ['article_id' => $articleId, 'index' => $index]);
return $this->httpPostForJson($url, ['article_id' => $article_id, 'index' => $index]);
} }
/** /**
* 通过 article_id 获取已发布文章 * 通过 article_id 获取已发布文章
* @param mixed $article_id 要获取的草稿的article_id * @param mixed $articleId 要获取的草稿的article_id
* @return array * @return array
* @throws \WeChat\Exceptions\InvalidResponseException * @throws \WeChat\Exceptions\InvalidResponseException
* @throws \WeChat\Exceptions\LocalCacheException * @throws \WeChat\Exceptions\LocalCacheException
*/ */
public function getArticle($article_id) public function getArticle($articleId)
{ {
$url = "https://api.weixin.qq.com/cgi-bin/freepublish/getarticle?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/cgi-bin/freepublish/getarticle?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, ['article_id' => $articleId]);
return $this->httpPostForJson($url, ['article_id' => $article_id]);
} }
/** /**
* 获取成功发布列表 * 获取成功发布列表
* @param int $offset 从全部素材的该偏移位置开始返回0表示从第一个素材返回 * @param int $offset 从全部素材的该偏移位置开始返回0表示从第一个素材返回
* @param int $count 返回素材的数量取值在1到20之间 * @param int $count 返回素材的数量取值在1到20之间
* @param int $no_content 1 表示不返回 content 字段0 表示正常返回,默认为 0 * @param int $noContent 1 表示不返回 content 字段0 表示正常返回,默认为 0
* @return array * @return array
* @throws \WeChat\Exceptions\InvalidResponseException * @throws \WeChat\Exceptions\InvalidResponseException
* @throws \WeChat\Exceptions\LocalCacheException * @throws \WeChat\Exceptions\LocalCacheException
*/ */
public function batchGet($offset = 0, $count = 20, $no_content = 0) public function batchGet($offset = 0, $count = 20, $noContent = 0)
{ {
$url = "https://api.weixin.qq.com/cgi-bin/freepublish/batchget?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/cgi-bin/freepublish/batchget?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, ['no_content' => $noContent, 'offset' => $offset, 'count' => $count]);
return $this->httpPostForJson($url, ['no_content' => $no_content, 'offset' => $offset, 'count' => $count]);
} }
} }

View File

@ -61,7 +61,6 @@ class Limit extends BasicWeChat
public function getCallbackIp() public function getCallbackIp()
{ {
$url = 'https://api.weixin.qq.com/cgi-bin/getcallbackip?access_token=ACCESS_TOKEN'; $url = 'https://api.weixin.qq.com/cgi-bin/getcallbackip?access_token=ACCESS_TOKEN';
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callGetApi($url);
return $this->httpGetForJson($url);
} }
} }

View File

@ -41,8 +41,7 @@ class Media extends BasicWeChat
throw new InvalidResponseException('Invalid Media Type.', '0'); throw new InvalidResponseException('Invalid Media Type.', '0');
} }
$url = "https://api.weixin.qq.com/cgi-bin/media/upload?access_token=ACCESS_TOKEN&type={$type}"; $url = "https://api.weixin.qq.com/cgi-bin/media/upload?access_token=ACCESS_TOKEN&type={$type}";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, ['media' => Tools::createCurlFile($filename)], false);
return $this->httpPostForJson($url, ['media' => Tools::createCurlFile($filename)], false);
} }
/** /**
@ -57,7 +56,7 @@ class Media extends BasicWeChat
{ {
$url = "https://api.weixin.qq.com/cgi-bin/media/get?access_token=ACCESS_TOKEN&media_id={$media_id}"; $url = "https://api.weixin.qq.com/cgi-bin/media/get?access_token=ACCESS_TOKEN&media_id={$media_id}";
$this->registerApi($url, __FUNCTION__, func_get_args()); $this->registerApi($url, __FUNCTION__, func_get_args());
if($outType=='url') return $url; if ($outType == 'url') return $url;
$result = Tools::get($url); $result = Tools::get($url);
if (is_array($json = json_decode($result, true))) { if (is_array($json = json_decode($result, true))) {
if (!$this->isTry && isset($json['errcode']) && in_array($json['errcode'], ['40014', '40001', '41001', '42001'])) { if (!$this->isTry && isset($json['errcode']) && in_array($json['errcode'], ['40014', '40001', '41001', '42001'])) {
@ -79,8 +78,7 @@ class Media extends BasicWeChat
public function addNews($data) public function addNews($data)
{ {
$url = "https://api.weixin.qq.com/cgi-bin/material/add_news?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/cgi-bin/material/add_news?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, $data);
return $this->httpPostForJson($url, $data);
} }
/** /**
@ -94,10 +92,8 @@ class Media extends BasicWeChat
*/ */
public function updateNews($media_id, $index, $news) public function updateNews($media_id, $index, $news)
{ {
$data = ['media_id' => $media_id, 'index' => $index, 'articles' => $news];
$url = "https://api.weixin.qq.com/cgi-bin/material/update_news?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/cgi-bin/material/update_news?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, ['media_id' => $media_id, 'index' => $index, 'articles' => $news]);
return $this->httpPostForJson($url, $data);
} }
/** /**
@ -110,8 +106,7 @@ class Media extends BasicWeChat
public function uploadImg($filename) public function uploadImg($filename)
{ {
$url = "https://api.weixin.qq.com/cgi-bin/media/uploadimg?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/cgi-bin/media/uploadimg?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, ['media' => Tools::createCurlFile($filename)], false);
return $this->httpPostForJson($url, ['media' => Tools::createCurlFile($filename)], false);
} }
/** /**
@ -129,8 +124,7 @@ class Media extends BasicWeChat
throw new InvalidResponseException('Invalid Media Type.', '0'); throw new InvalidResponseException('Invalid Media Type.', '0');
} }
$url = "https://api.weixin.qq.com/cgi-bin/material/add_material?access_token=ACCESS_TOKEN&type={$type}"; $url = "https://api.weixin.qq.com/cgi-bin/material/add_material?access_token=ACCESS_TOKEN&type={$type}";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, ['media' => Tools::createCurlFile($filename), 'description' => Tools::arr2json($description)], false);
return $this->httpPostForJson($url, ['media' => Tools::createCurlFile($filename), 'description' => Tools::arr2json($description)], false);
} }
/** /**
@ -145,7 +139,7 @@ class Media extends BasicWeChat
{ {
$url = "https://api.weixin.qq.com/cgi-bin/material/get_material?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/cgi-bin/material/get_material?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); $this->registerApi($url, __FUNCTION__, func_get_args());
if($outType=='url') return $url; if ($outType == 'url') return $url;
$result = Tools::post($url, ['media_id' => $media_id]); $result = Tools::post($url, ['media_id' => $media_id]);
if (is_array($json = json_decode($result, true))) { if (is_array($json = json_decode($result, true))) {
if (!$this->isTry && isset($json['errcode']) && in_array($json['errcode'], ['40014', '40001', '41001', '42001'])) { if (!$this->isTry && isset($json['errcode']) && in_array($json['errcode'], ['40014', '40001', '41001', '42001'])) {
@ -159,16 +153,15 @@ class Media extends BasicWeChat
/** /**
* 删除永久素材 * 删除永久素材
* @param string $media_id * @param string $mediaId
* @return array * @return array
* @throws \WeChat\Exceptions\InvalidResponseException * @throws \WeChat\Exceptions\InvalidResponseException
* @throws \WeChat\Exceptions\LocalCacheException * @throws \WeChat\Exceptions\LocalCacheException
*/ */
public function delMaterial($media_id) public function delMaterial($mediaId)
{ {
$url = "https://api.weixin.qq.com/cgi-bin/material/del_material?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/cgi-bin/material/del_material?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->httpPostForJson($url, ['media_id' => $mediaId]);
return $this->httpPostForJson($url, ['media_id' => $media_id]);
} }
/** /**
@ -180,8 +173,7 @@ class Media extends BasicWeChat
public function getMaterialCount() public function getMaterialCount()
{ {
$url = "https://api.weixin.qq.com/cgi-bin/material/get_materialcount?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/cgi-bin/material/get_materialcount?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callGetApi($url);
return $this->httpGetForJson($url);
} }
/** /**
@ -199,7 +191,6 @@ class Media extends BasicWeChat
throw new InvalidResponseException('Invalid Media Type.', '0'); throw new InvalidResponseException('Invalid Media Type.', '0');
} }
$url = "https://api.weixin.qq.com/cgi-bin/material/batchget_material?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/cgi-bin/material/batchget_material?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, ['type' => $type, 'offset' => $offset, 'count' => $count]);
return $this->httpPostForJson($url, ['type' => $type, 'offset' => $offset, 'count' => $count]);
} }
} }

View File

@ -35,8 +35,7 @@ class Menu extends BasicWeChat
public function get() public function get()
{ {
$url = "https://api.weixin.qq.com/cgi-bin/menu/get?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/cgi-bin/menu/get?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callGetApi($url);
return $this->httpGetForJson($url);
} }
/** /**
@ -48,8 +47,7 @@ class Menu extends BasicWeChat
public function delete() public function delete()
{ {
$url = "https://api.weixin.qq.com/cgi-bin/menu/delete?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/cgi-bin/menu/delete?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callGetApi($url);
return $this->httpGetForJson($url);
} }
/** /**
@ -62,8 +60,7 @@ class Menu extends BasicWeChat
public function create(array $data) public function create(array $data)
{ {
$url = "https://api.weixin.qq.com/cgi-bin/menu/create?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/cgi-bin/menu/create?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, $data);
return $this->httpPostForJson($url, $data);
} }
/** /**
@ -76,8 +73,7 @@ class Menu extends BasicWeChat
public function addConditional(array $data) public function addConditional(array $data)
{ {
$url = "https://api.weixin.qq.com/cgi-bin/menu/addconditional?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/cgi-bin/menu/addconditional?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, $data);
return $this->httpPostForJson($url, $data);
} }
/** /**
@ -90,8 +86,7 @@ class Menu extends BasicWeChat
public function delConditional($menuid) public function delConditional($menuid)
{ {
$url = "https://api.weixin.qq.com/cgi-bin/menu/delconditional?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/cgi-bin/menu/delconditional?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, ['menuid' => $menuid]);
return $this->httpPostForJson($url, ['menuid' => $menuid]);
} }
/** /**
@ -104,7 +99,6 @@ class Menu extends BasicWeChat
public function tryConditional($openid) public function tryConditional($openid)
{ {
$url = "https://api.weixin.qq.com/cgi-bin/menu/trymatch?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/cgi-bin/menu/trymatch?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, ['user_id' => $openid]);
return $this->httpPostForJson($url, ['user_id' => $openid]);
} }
} }

View File

@ -72,30 +72,30 @@ class Oauth extends BasicWeChat
/** /**
* 检验授权凭证access_token是否有效 * 检验授权凭证access_token是否有效
* @param string $access_token 网页授权接口调用凭证,注意此access_token与基础支持的access_token不同 * @param string $accessToken 网页授权接口调用凭证,注意此access_token与基础支持的access_token不同
* @param string $openid 用户的唯一标识 * @param string $openid 用户的唯一标识
* @return array * @return array
* @throws \WeChat\Exceptions\InvalidResponseException * @throws \WeChat\Exceptions\InvalidResponseException
* @throws \WeChat\Exceptions\LocalCacheException * @throws \WeChat\Exceptions\LocalCacheException
*/ */
public function checkOauthAccessToken($access_token, $openid) public function checkOauthAccessToken($accessToken, $openid)
{ {
$url = "https://api.weixin.qq.com/sns/auth?access_token={$access_token}&openid={$openid}"; $url = "https://api.weixin.qq.com/sns/auth?access_token={$accessToken}&openid={$openid}";
return $this->httpGetForJson($url); return $this->httpGetForJson($url);
} }
/** /**
* 拉取用户信息(需scope为 snsapi_userinfo) * 拉取用户信息(需scope为 snsapi_userinfo)
* @param string $access_token 网页授权接口调用凭证,注意此access_token与基础支持的access_token不同 * @param string $accessToken 网页授权接口调用凭证,注意此access_token与基础支持的access_token不同
* @param string $openid 用户的唯一标识 * @param string $openid 用户的唯一标识
* @param string $lang 返回国家地区语言版本zh_CN 简体zh_TW 繁体en 英语 * @param string $lang 返回国家地区语言版本zh_CN 简体zh_TW 繁体en 英语
* @return array * @return array
* @throws \WeChat\Exceptions\InvalidResponseException * @throws \WeChat\Exceptions\InvalidResponseException
* @throws \WeChat\Exceptions\LocalCacheException * @throws \WeChat\Exceptions\LocalCacheException
*/ */
public function getUserInfo($access_token, $openid, $lang = 'zh_CN') public function getUserInfo($accessToken, $openid, $lang = 'zh_CN')
{ {
$url = "https://api.weixin.qq.com/sns/userinfo?access_token={$access_token}&openid={$openid}&lang={$lang}"; $url = "https://api.weixin.qq.com/sns/userinfo?access_token={$accessToken}&openid={$openid}&lang={$lang}";
return $this->httpGetForJson($url); return $this->httpGetForJson($url);
} }
} }

View File

@ -36,10 +36,9 @@ class Product extends BasicWeChat
*/ */
public function modStatus($keystandard, $keystr, $status = 'on') public function modStatus($keystandard, $keystr, $status = 'on')
{ {
$data = ['keystandard' => $keystandard, 'keystr' => $keystr, 'status' => $status];
$url = "https://api.weixin.qq.com/scan/product/modstatus?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/scan/product/modstatus?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); $data = ['keystandard' => $keystandard, 'keystr' => $keystr, 'status' => $status];
return $this->httpPostForJson($url, $data); return $this->callPostApi($url, $data);
} }
/** /**
@ -52,10 +51,8 @@ class Product extends BasicWeChat
*/ */
public function setTestWhiteList(array $openids = [], array $usernames = []) public function setTestWhiteList(array $openids = [], array $usernames = [])
{ {
$data = ['openid' => $openids, 'username' => $usernames];
$url = "https://api.weixin.qq.com/scan/testwhitelist/set?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/scan/testwhitelist/set?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, ['openid' => $openids, 'username' => $usernames]);
return $this->httpPostForJson($url, $data);
} }
/** /**
@ -70,11 +67,10 @@ class Product extends BasicWeChat
*/ */
public function getQrcode($keystandard, $keystr, $qrcode_size, $extinfo = []) public function getQrcode($keystandard, $keystr, $qrcode_size, $extinfo = [])
{ {
$url = "https://api.weixin.qq.com/scan/product/getqrcode?access_token=ACCESS_TOKEN";
$data = ['keystandard' => $keystandard, 'keystr' => $keystr, 'qrcode_size' => $qrcode_size]; $data = ['keystandard' => $keystandard, 'keystr' => $keystr, 'qrcode_size' => $qrcode_size];
empty($extinfo) || $data['extinfo'] = $extinfo; empty($extinfo) || $data['extinfo'] = $extinfo;
$url = "https://api.weixin.qq.com/scan/product/getqrcode?access_token=ACCESS_TOKEN"; return $this->callPostApi($url, $data);
$this->registerApi($url, __FUNCTION__, func_get_args());
return $this->httpPostForJson($url, $data);
} }
/** /**
@ -87,11 +83,10 @@ class Product extends BasicWeChat
*/ */
public function getProduct($keystandard, $keystr) public function getProduct($keystandard, $keystr)
{ {
$url = "https://api.weixin.qq.com/scan/product/get?access_token=ACCESS_TOKEN";
$data = ['keystandard' => $keystandard, 'keystr' => $keystr]; $data = ['keystandard' => $keystandard, 'keystr' => $keystr];
empty($extinfo) || $data['extinfo'] = $extinfo; empty($extinfo) || $data['extinfo'] = $extinfo;
$url = "https://api.weixin.qq.com/scan/product/get?access_token=ACCESS_TOKEN"; return $this->callPostApi($url, $data);
$this->registerApi($url, __FUNCTION__, func_get_args());
return $this->httpPostForJson($url, $data);
} }
/** /**
@ -106,12 +101,11 @@ class Product extends BasicWeChat
*/ */
public function getProductList($offset, $limit = 10, $status = null, $keystr = '') public function getProductList($offset, $limit = 10, $status = null, $keystr = '')
{ {
$url = "https://api.weixin.qq.com/scan/product/get?access_token=ACCESS_TOKEN";
$data = ['offset' => $offset, 'limit' => $limit]; $data = ['offset' => $offset, 'limit' => $limit];
is_null($status) || $data['status'] = $status; is_null($status) || $data['status'] = $status;
empty($keystr) || $data['keystr'] = $keystr; empty($keystr) || $data['keystr'] = $keystr;
$url = "https://api.weixin.qq.com/scan/product/get?access_token=ACCESS_TOKEN"; return $this->callPostApi($url, $data);
$this->registerApi($url, __FUNCTION__, func_get_args());
return $this->httpPostForJson($url, $data);
} }
/** /**
@ -124,8 +118,7 @@ class Product extends BasicWeChat
public function updateProduct(array $data) public function updateProduct(array $data)
{ {
$url = "https://api.weixin.qq.com/scan/product/update?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/scan/product/update?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, $data);
return $this->httpPostForJson($url, $data);
} }
/** /**
@ -139,8 +132,7 @@ class Product extends BasicWeChat
public function clearProduct($keystandard, $keystr) public function clearProduct($keystandard, $keystr)
{ {
$url = "https://api.weixin.qq.com/scan/product/clear?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/scan/product/clear?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, ['keystandard' => $keystandard, 'keystr' => $keystr]);
return $this->httpPostForJson($url, ['keystandard' => $keystandard, 'keystr' => $keystr]);
} }
/** /**
@ -153,8 +145,7 @@ class Product extends BasicWeChat
public function scanTicketCheck($ticket) public function scanTicketCheck($ticket)
{ {
$url = "https://api.weixin.qq.com/scan/scanticket/check?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/scan/scanticket/check?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, ['ticket' => $ticket]);
return $this->httpPostForJson($url, ['ticket' => $ticket]);
} }
/** /**
@ -168,10 +159,8 @@ class Product extends BasicWeChat
*/ */
public function clearScanticket($keystandard, $keystr, $extinfo) public function clearScanticket($keystandard, $keystr, $extinfo)
{ {
$data = ['keystandard' => $keystandard, 'keystr' => $keystr, 'extinfo' => $extinfo];
$url = "https://api.weixin.qq.com/scan/scanticket/check?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/scan/scanticket/check?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); $data = ['keystandard' => $keystandard, 'keystr' => $keystr, 'extinfo' => $extinfo];
return $this->httpPostForJson($url, $data); return $this->callPostApi($url, $data);
} }
} }

View File

@ -48,8 +48,7 @@ class Qrcode extends BasicWeChat
$data['action_name'] = is_integer($scene) ? 'QR_LIMIT_SCENE' : 'QR_LIMIT_STR_SCENE'; $data['action_name'] = is_integer($scene) ? 'QR_LIMIT_SCENE' : 'QR_LIMIT_STR_SCENE';
} }
$url = "https://api.weixin.qq.com/cgi-bin/qrcode/create?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/cgi-bin/qrcode/create?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, $data);
return $this->httpPostForJson($url, $data);
} }
/** /**
@ -72,7 +71,6 @@ class Qrcode extends BasicWeChat
public function shortUrl($longUrl) public function shortUrl($longUrl)
{ {
$url = "https://api.weixin.qq.com/cgi-bin/shorturl?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/cgi-bin/shorturl?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, ['action' => 'long2short', 'long_url' => $longUrl]);
return $this->httpPostForJson($url, ['action' => 'long2short', 'long_url' => $longUrl]);
} }
} }

View File

@ -34,8 +34,7 @@ class Scan extends BasicWeChat
public function getMerchantInfo() public function getMerchantInfo()
{ {
$url = "https://api.weixin.qq.com/scan/merchantinfo/get?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/scan/merchantinfo/get?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callGetApi($url);
return $this->httpGetForJson($url);
} }
/** /**
@ -48,8 +47,7 @@ class Scan extends BasicWeChat
public function addProduct(array $data) public function addProduct(array $data)
{ {
$url = "https://api.weixin.qq.com/scan/product/create?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/scan/product/create?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, $data);
return $this->httpPostForJson($url, $data);
} }
/** /**
@ -63,10 +61,9 @@ class Scan extends BasicWeChat
*/ */
public function modProduct($keystandard, $keystr, $status = 'on') public function modProduct($keystandard, $keystr, $status = 'on')
{ {
$data = ['keystandard' => $keystandard, 'keystr' => $keystr, 'status' => $status];
$url = "https://api.weixin.qq.com/scan/product/modstatus?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/scan/product/modstatus?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); $data = ['keystandard' => $keystandard, 'keystr' => $keystr, 'status' => $status];
return $this->httpPostForJson($url, $data); return $this->callPostApi($url, $data);
} }
/** /**
@ -79,10 +76,8 @@ class Scan extends BasicWeChat
*/ */
public function setTestWhiteList($openids = [], $usernames = []) public function setTestWhiteList($openids = [], $usernames = [])
{ {
$data = ['openid' => $openids, 'username' => $usernames];
$url = "https://api.weixin.qq.com/scan/product/modstatus?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/scan/product/modstatus?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, ['openid' => $openids, 'username' => $usernames]);
return $this->httpPostForJson($url, $data);
} }
/** /**
@ -97,11 +92,10 @@ class Scan extends BasicWeChat
*/ */
public function getQrc($keystandard, $keystr, $extinfo = null, $qrcode_size = 64) public function getQrc($keystandard, $keystr, $extinfo = null, $qrcode_size = 64)
{ {
$url = "https://api.weixin.qq.com/scan/product/getqrcode?access_token=ACCESS_TOKEN";
$data = ['keystandard' => $keystandard, 'keystr' => $keystr, 'qrcode_size' => $qrcode_size]; $data = ['keystandard' => $keystandard, 'keystr' => $keystr, 'qrcode_size' => $qrcode_size];
is_null($extinfo) || $data['extinfo'] = $extinfo; is_null($extinfo) || $data['extinfo'] = $extinfo;
$url = "https://api.weixin.qq.com/scan/product/getqrcode?access_token=ACCESS_TOKEN"; return $this->callPostApi($url, $data);
$this->registerApi($url, __FUNCTION__, func_get_args());
return $this->httpPostForJson($url, $data);
} }
/** /**
@ -115,8 +109,7 @@ class Scan extends BasicWeChat
public function getProductInfo($keystandard, $keystr) public function getProductInfo($keystandard, $keystr)
{ {
$url = "https://api.weixin.qq.com/scan/product/get?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/scan/product/get?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, ['keystandard' => $keystandard, 'keystr' => $keystr]);
return $this->httpPostForJson($url, ['keystandard' => $keystandard, 'keystr' => $keystr]);
} }
/** /**
@ -131,12 +124,11 @@ class Scan extends BasicWeChat
*/ */
public function getProductList($offset = 1, $limit = 10, $status = null, $keystr = null) public function getProductList($offset = 1, $limit = 10, $status = null, $keystr = null)
{ {
$url = "https://api.weixin.qq.com/scan/product/getlist?access_token=ACCESS_TOKEN";
$data = ['offset' => $offset, 'limit' => $limit]; $data = ['offset' => $offset, 'limit' => $limit];
is_null($status) || $data['status'] = $status; is_null($status) || $data['status'] = $status;
is_null($keystr) || $data['keystr'] = $keystr; is_null($keystr) || $data['keystr'] = $keystr;
$url = "https://api.weixin.qq.com/scan/product/getlist?access_token=ACCESS_TOKEN"; return $this->callPostApi($url, $data);
$this->registerApi($url, __FUNCTION__, func_get_args());
return $this->httpPostForJson($url, $data);
} }
/** /**
@ -149,8 +141,7 @@ class Scan extends BasicWeChat
public function updateProduct(array $data) public function updateProduct(array $data)
{ {
$url = "https://api.weixin.qq.com/scan/product/update?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/scan/product/update?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, $data);
return $this->httpPostForJson($url, $data);
} }
/** /**
@ -164,8 +155,7 @@ class Scan extends BasicWeChat
public function clearProduct($keystandard, $keystr) public function clearProduct($keystandard, $keystr)
{ {
$url = "https://api.weixin.qq.com/scan/product/clear?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/scan/product/clear?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, ['keystandard' => $keystandard, 'keystr' => $keystr]);
return $this->httpPostForJson($url, ['keystandard' => $keystandard, 'keystr' => $keystr]);
} }
/** /**
@ -178,8 +168,7 @@ class Scan extends BasicWeChat
public function checkTicket($ticket) public function checkTicket($ticket)
{ {
$url = "https://api.weixin.qq.com/scan/scanticket/check?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/scan/scanticket/check?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, ['ticket' => $ticket]);
return $this->httpPostForJson($url, ['ticket' => $ticket]);
} }
/** /**
@ -194,8 +183,6 @@ class Scan extends BasicWeChat
public function clearScanTicket($keystandard, $keystr, $extinfo) public function clearScanTicket($keystandard, $keystr, $extinfo)
{ {
$url = "https://api.weixin.qq.com/scan/scanticket/check?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/scan/scanticket/check?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, ['keystandard' => $keystandard, 'keystr' => $keystr, 'extinfo' => $extinfo]);
return $this->httpPostForJson($url, ['keystandard' => $keystandard, 'keystr' => $keystr, 'extinfo' => $extinfo]);
} }
} }

View File

@ -36,8 +36,7 @@ class Shake extends BasicWeChat
public function register(array $data) public function register(array $data)
{ {
$url = "https://api.weixin.qq.com/shakearound/account/register?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/shakearound/account/register?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, $data);
return $this->httpPostForJson($url, $data);
} }
/** /**
@ -49,8 +48,7 @@ class Shake extends BasicWeChat
public function auditStatus() public function auditStatus()
{ {
$url = "https://api.weixin.qq.com/shakearound/account/auditstatus?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/shakearound/account/auditstatus?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callGetApi($url);
return $this->httpGetForJson($url);
} }
/** /**
@ -69,8 +67,7 @@ class Shake extends BasicWeChat
is_null($poi_id) || $data['poi_id'] = $poi_id; is_null($poi_id) || $data['poi_id'] = $poi_id;
is_null($comment) || $data['comment'] = $comment; is_null($comment) || $data['comment'] = $comment;
$url = "https://api.weixin.qq.com/shakearound/device/applyid?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/shakearound/device/applyid?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, $data);
return $this->httpPostForJson($url, $data);
} }
/** /**
@ -83,8 +80,7 @@ class Shake extends BasicWeChat
public function getApplyStatus($applyId) public function getApplyStatus($applyId)
{ {
$url = "https://api.weixin.qq.com/shakearound/device/applyid?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/shakearound/device/applyid?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, ['apply_id' => $applyId]);
return $this->httpPostForJson($url, ['apply_id' => $applyId]);
} }
/** /**
@ -97,8 +93,7 @@ class Shake extends BasicWeChat
public function updateApply(array $data) public function updateApply(array $data)
{ {
$url = "https://api.weixin.qq.com/shakearound/device/update?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/shakearound/device/update?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, $data);
return $this->httpPostForJson($url, $data);
} }
/** /**
@ -111,8 +106,7 @@ class Shake extends BasicWeChat
public function bindLocation(array $data) public function bindLocation(array $data)
{ {
$url = "https://api.weixin.qq.com/shakearound/device/bindlocation?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/shakearound/device/bindlocation?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, $data);
return $this->httpPostForJson($url, $data);
} }
/** /**
@ -125,8 +119,7 @@ class Shake extends BasicWeChat
public function search(array $data) public function search(array $data)
{ {
$url = "https://api.weixin.qq.com/shakearound/device/search?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/shakearound/device/search?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, $data);
return $this->httpPostForJson($url, $data);
} }
/** /**
@ -139,8 +132,7 @@ class Shake extends BasicWeChat
public function createPage(array $data) public function createPage(array $data)
{ {
$url = "https://api.weixin.qq.com/shakearound/page/add?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/shakearound/page/add?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, $data);
return $this->httpPostForJson($url, $data);
} }
/** /**
@ -153,8 +145,7 @@ class Shake extends BasicWeChat
public function updatePage(array $data) public function updatePage(array $data)
{ {
$url = "https://api.weixin.qq.com/shakearound/page/update?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/shakearound/page/update?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, $data);
return $this->httpPostForJson($url, $data);
} }
/** /**
@ -167,22 +158,20 @@ class Shake extends BasicWeChat
public function searchPage(array $data) public function searchPage(array $data)
{ {
$url = "https://api.weixin.qq.com/shakearound/page/search?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/shakearound/page/search?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, $data);
return $this->httpPostForJson($url, $data);
} }
/** /**
* 删除页面 * 删除页面
* @param integer $page_id 指定页面的id * @param integer $pageId 指定页面的id
* @return array * @return array
* @throws \WeChat\Exceptions\InvalidResponseException * @throws \WeChat\Exceptions\InvalidResponseException
* @throws \WeChat\Exceptions\LocalCacheException * @throws \WeChat\Exceptions\LocalCacheException
*/ */
public function deletePage($page_id) public function deletePage($pageId)
{ {
$url = "https://api.weixin.qq.com/shakearound/page/delete?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/shakearound/page/delete?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, ['page_id' => $pageId]);
return $this->httpPostForJson($url, ['page_id' => $page_id]);
} }
/** /**
@ -196,8 +185,7 @@ class Shake extends BasicWeChat
public function upload($filename, $type = 'icon') public function upload($filename, $type = 'icon')
{ {
$url = "https://api.weixin.qq.com/shakearound/material/add?access_token=ACCESS_TOKEN&type={$type}"; $url = "https://api.weixin.qq.com/shakearound/material/add?access_token=ACCESS_TOKEN&type={$type}";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, ['media' => Tools::createCurlFile($filename)], false);
return $this->httpPostForJson($url, ['media' => Tools::createCurlFile($filename)]);
} }
/** /**
@ -210,8 +198,7 @@ class Shake extends BasicWeChat
public function bindPage(array $data) public function bindPage(array $data)
{ {
$url = "https://api.weixin.qq.com/shakearound/device/bindpage?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/shakearound/device/bindpage?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, $data);
return $this->httpPostForJson($url, $data);
} }
/** /**
@ -224,8 +211,7 @@ class Shake extends BasicWeChat
public function queryPage(array $data) public function queryPage(array $data)
{ {
$url = "https://api.weixin.qq.com/shakearound/relation/search?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/shakearound/relation/search?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, $data);
return $this->httpPostForJson($url, $data);
} }
/** /**
@ -238,68 +224,63 @@ class Shake extends BasicWeChat
public function totalDevice(array $data) public function totalDevice(array $data)
{ {
$url = "https://api.weixin.qq.com/shakearound/statistics/device?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/shakearound/statistics/device?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, $data);
return $this->httpPostForJson($url, $data);
} }
/** /**
* 批量查询设备统计数据接口 * 批量查询设备统计数据接口
* @param integer $date 指定查询日期时间戳,单位为秒 * @param integer $date 指定查询日期时间戳,单位为秒
* @param integer $page_index 指定查询的结果页序号返回结果按摇周边人数降序排序每50条记录为一页 * @param integer $pageIndex 指定查询的结果页序号返回结果按摇周边人数降序排序每50条记录为一页
* @return array * @return array
* @throws \WeChat\Exceptions\InvalidResponseException * @throws \WeChat\Exceptions\InvalidResponseException
* @throws \WeChat\Exceptions\LocalCacheException * @throws \WeChat\Exceptions\LocalCacheException
*/ */
public function totalDeviceList($date, $page_index = 1) public function totalDeviceList($date, $pageIndex = 1)
{ {
$url = "https://api.weixin.qq.com/shakearound/statistics/devicelist?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/shakearound/statistics/devicelist?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, ['date' => $date, 'page_index' => $pageIndex]);
return $this->httpPostForJson($url, ['date' => $date, 'page_index' => $page_index]);
} }
/** /**
* 以页面为维度的数据统计接口 * 以页面为维度的数据统计接口
* @param integer $page_id 指定页面的设备ID * @param integer $pageId 指定页面的设备ID
* @param integer $begin_date 起始日期时间戳最长时间跨度为30天单位为秒 * @param integer $beginDate 起始日期时间戳最长时间跨度为30天单位为秒
* @param integer $end_date 结束日期时间戳最长时间跨度为30天单位为秒 * @param integer $endDate 结束日期时间戳最长时间跨度为30天单位为秒
* @return array * @return array
* @throws \WeChat\Exceptions\InvalidResponseException * @throws \WeChat\Exceptions\InvalidResponseException
* @throws \WeChat\Exceptions\LocalCacheException * @throws \WeChat\Exceptions\LocalCacheException
*/ */
public function totalPage($page_id, $begin_date, $end_date) public function totalPage($pageId, $beginDate, $endDate)
{ {
$url = "https://api.weixin.qq.com/shakearound/statistics/page?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/shakearound/statistics/page?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, ['page_id' => $pageId, 'begin_date' => $beginDate, 'end_date' => $endDate]);
return $this->httpPostForJson($url, ['page_id' => $page_id, 'begin_date' => $begin_date, 'end_date' => $end_date]);
} }
/** /**
* 编辑分组信息 * 编辑分组信息
* @param integer $group_id 分组唯一标识,全局唯一 * @param integer $groupId 分组唯一标识,全局唯一
* @param string $group_name 分组名称不超过100汉字或200个英文字母 * @param string $groupName 分组名称不超过100汉字或200个英文字母
* @return array * @return array
* @throws \WeChat\Exceptions\InvalidResponseException * @throws \WeChat\Exceptions\InvalidResponseException
* @throws \WeChat\Exceptions\LocalCacheException * @throws \WeChat\Exceptions\LocalCacheException
*/ */
public function updateGroup($group_id, $group_name) public function updateGroup($groupId, $groupName)
{ {
$url = "https://api.weixin.qq.com/shakearound/device/group/update?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/shakearound/device/group/update?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, ['group_id' => $groupId, 'group_name' => $groupName]);
return $this->httpPostForJson($url, ['group_id' => $group_id, 'group_name' => $group_name]);
} }
/** /**
* 删除分组 * 删除分组
* @param integer $group_id 分组唯一标识,全局唯一 * @param integer $groupId 分组唯一标识,全局唯一
* @return array * @return array
* @throws \WeChat\Exceptions\InvalidResponseException * @throws \WeChat\Exceptions\InvalidResponseException
* @throws \WeChat\Exceptions\LocalCacheException * @throws \WeChat\Exceptions\LocalCacheException
*/ */
public function deleteGroup($group_id) public function deleteGroup($groupId)
{ {
$url = "https://api.weixin.qq.com/shakearound/device/group/delete?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/shakearound/device/group/delete?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, ['group_id' => $groupId]);
return $this->httpPostForJson($url, ['group_id' => $group_id]);
} }
/** /**
@ -313,8 +294,7 @@ class Shake extends BasicWeChat
public function getGroupList($begin = 0, $count = 10) public function getGroupList($begin = 0, $count = 10)
{ {
$url = "https://api.weixin.qq.com/shakearound/device/group/getlist?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/shakearound/device/group/getlist?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, ['begin' => $begin, 'count' => $count]);
return $this->httpPostForJson($url, ['begin' => $begin, 'count' => $count]);
} }
@ -330,8 +310,7 @@ class Shake extends BasicWeChat
public function getGroupDetail($group_id, $begin = 0, $count = 100) public function getGroupDetail($group_id, $begin = 0, $count = 100)
{ {
$url = "https://api.weixin.qq.com/shakearound/device/group/getdetail?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/shakearound/device/group/getdetail?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, ['group_id' => $group_id, 'begin' => $begin, 'count' => $count]);
return $this->httpPostForJson($url, ['group_id' => $group_id, 'begin' => $begin, 'count' => $count]);
} }
/** /**
@ -344,8 +323,7 @@ class Shake extends BasicWeChat
public function addDeviceGroup(array $data) public function addDeviceGroup(array $data)
{ {
$url = "https://api.weixin.qq.com/shakearound/device/group/adddevice?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/shakearound/device/group/adddevice?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, $data);
return $this->httpPostForJson($url, $data);
} }
/** /**
@ -358,8 +336,6 @@ class Shake extends BasicWeChat
public function deleteDeviceGroup(array $data) public function deleteDeviceGroup(array $data)
{ {
$url = "https://api.weixin.qq.com/shakearound/device/group/deletedevice?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/shakearound/device/group/deletedevice?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, $data);
return $this->httpPostForJson($url, $data);
} }
} }

View File

@ -33,8 +33,7 @@ class Tags extends BasicWeChat
public function getTags() public function getTags()
{ {
$url = "https://api.weixin.qq.com/cgi-bin/tags/get?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/cgi-bin/tags/get?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callGetApi($url);
return $this->httpGetForJson($url);
} }
/** /**
@ -47,8 +46,7 @@ class Tags extends BasicWeChat
public function createTags($name) public function createTags($name)
{ {
$url = "https://api.weixin.qq.com/cgi-bin/tags/create?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/cgi-bin/tags/create?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, ['tag' => ['name' => $name]]);
return $this->httpPostForJson($url, ['tag' => ['name' => $name]]);
} }
/** /**
@ -62,8 +60,7 @@ class Tags extends BasicWeChat
public function updateTags($id, $name) public function updateTags($id, $name)
{ {
$url = "https://api.weixin.qq.com/cgi-bin/tags/update?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/cgi-bin/tags/update?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, ['tag' => ['name' => $name, 'id' => $id]]);
return $this->httpPostForJson($url, ['tag' => ['name' => $name, 'id' => $id]]);
} }
/** /**
@ -76,8 +73,7 @@ class Tags extends BasicWeChat
public function deleteTags($tagId) public function deleteTags($tagId)
{ {
$url = 'https://api.weixin.qq.com/cgi-bin/tags/delete?access_token=ACCESS_TOKEN'; $url = 'https://api.weixin.qq.com/cgi-bin/tags/delete?access_token=ACCESS_TOKEN';
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, ['tag' => ['id' => $tagId]]);
return $this->httpPostForJson($url, ['tag' => ['id' => $tagId]]);
} }
/** /**
@ -91,8 +87,7 @@ class Tags extends BasicWeChat
public function batchTagging(array $openids, $tagId) public function batchTagging(array $openids, $tagId)
{ {
$url = 'https://api.weixin.qq.com/cgi-bin/tags/members/batchtagging?access_token=ACCESS_TOKEN'; $url = 'https://api.weixin.qq.com/cgi-bin/tags/members/batchtagging?access_token=ACCESS_TOKEN';
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, ['openid_list' => $openids, 'tagid' => $tagId]);
return $this->httpPostForJson($url, ['openid_list' => $openids, 'tagid' => $tagId]);
} }
/** /**
@ -106,8 +101,7 @@ class Tags extends BasicWeChat
public function batchUntagging(array $openids, $tagId) public function batchUntagging(array $openids, $tagId)
{ {
$url = 'https://api.weixin.qq.com/cgi-bin/tags/members/batchuntagging?access_token=ACCESS_TOKEN'; $url = 'https://api.weixin.qq.com/cgi-bin/tags/members/batchuntagging?access_token=ACCESS_TOKEN';
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, ['openid_list' => $openids, 'tagid' => $tagId]);
return $this->httpPostForJson($url, ['openid_list' => $openids, 'tagid' => $tagId]);
} }
/** /**
@ -120,7 +114,6 @@ class Tags extends BasicWeChat
public function getUserTagId($openid) public function getUserTagId($openid)
{ {
$url = 'https://api.weixin.qq.com/cgi-bin/tags/getidlist?access_token=ACCESS_TOKEN'; $url = 'https://api.weixin.qq.com/cgi-bin/tags/getidlist?access_token=ACCESS_TOKEN';
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, ['openid' => $openid]);
return $this->httpPostForJson($url, ['openid' => $openid]);
} }
} }

View File

@ -27,17 +27,16 @@ class Template extends BasicWeChat
{ {
/** /**
* 设置所属行业 * 设置所属行业
* @param string $industry_id1 公众号模板消息所属行业编号 * @param string $industryId1 公众号模板消息所属行业编号
* @param string $industry_id2 公众号模板消息所属行业编号 * @param string $industryId2 公众号模板消息所属行业编号
* @return array * @return array
* @throws Exceptions\InvalidResponseException * @throws Exceptions\InvalidResponseException
* @throws Exceptions\LocalCacheException * @throws Exceptions\LocalCacheException
*/ */
public function setIndustry($industry_id1, $industry_id2) public function setIndustry($industryId1, $industryId2)
{ {
$url = "https://api.weixin.qq.com/cgi-bin/template/api_set_industry?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/cgi-bin/template/api_set_industry?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, ['industry_id1' => $industryId1, 'industry_id2' => $industryId2]);
return $this->httpPostForJson($url, ['industry_id1' => $industry_id1, 'industry_id2' => $industry_id2]);
} }
/** /**
@ -49,8 +48,7 @@ class Template extends BasicWeChat
public function getIndustry() public function getIndustry()
{ {
$url = "https://api.weixin.qq.com/cgi-bin/template/get_industry?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/cgi-bin/template/get_industry?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callGetApi($url);
return $this->httpGetForJson($url);
} }
/** /**
@ -64,8 +62,7 @@ class Template extends BasicWeChat
public function addTemplate($templateIdShort, $keywordNameList = []) public function addTemplate($templateIdShort, $keywordNameList = [])
{ {
$url = "https://api.weixin.qq.com/cgi-bin/template/api_add_template?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/cgi-bin/template/api_add_template?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, ['template_id_short' => $templateIdShort, 'keyword_name_list' => $keywordNameList]);
return $this->httpPostForJson($url, ['template_id_short' => $templateIdShort, 'keyword_name_list' => $keywordNameList]);
} }
/** /**
@ -77,22 +74,20 @@ class Template extends BasicWeChat
public function getAllPrivateTemplate() public function getAllPrivateTemplate()
{ {
$url = "https://api.weixin.qq.com/cgi-bin/template/get_all_private_template?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/cgi-bin/template/get_all_private_template?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callGetApi($url);
return $this->httpGetForJson($url);
} }
/** /**
* 删除模板ID * 删除模板ID
* @param string $tpl_id 公众帐号下模板消息ID * @param string $tplId 公众帐号下模板消息ID
* @return array * @return array
* @throws Exceptions\InvalidResponseException * @throws Exceptions\InvalidResponseException
* @throws Exceptions\LocalCacheException * @throws Exceptions\LocalCacheException
*/ */
public function delPrivateTemplate($tpl_id) public function delPrivateTemplate($tplId)
{ {
$url = "https://api.weixin.qq.com/cgi-bin/template/del_private_template?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/cgi-bin/template/del_private_template?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, ['template_id' => $tplId]);
return $this->httpPostForJson($url, ['template_id' => $tpl_id]);
} }
/** /**
@ -105,9 +100,6 @@ class Template extends BasicWeChat
public function send(array $data) public function send(array $data)
{ {
$url = "https://api.weixin.qq.com/cgi-bin/message/template/send?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/cgi-bin/message/template/send?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, $data);
return $this->httpPostForJson($url, $data);
} }
} }

View File

@ -37,8 +37,7 @@ class User extends BasicWeChat
public function updateMark($openid, $remark) public function updateMark($openid, $remark)
{ {
$url = 'https://api.weixin.qq.com/cgi-bin/user/info/updateremark?access_token=ACCESS_TOKEN'; $url = 'https://api.weixin.qq.com/cgi-bin/user/info/updateremark?access_token=ACCESS_TOKEN';
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, ['openid' => $openid, 'remark' => $remark]);
return $this->httpPostForJson($url, ['openid' => $openid, 'remark' => $remark]);
} }
/** /**
@ -52,8 +51,7 @@ class User extends BasicWeChat
public function getUserInfo($openid, $lang = 'zh_CN') public function getUserInfo($openid, $lang = 'zh_CN')
{ {
$url = "https://api.weixin.qq.com/cgi-bin/user/info?access_token=ACCESS_TOKEN&openid={$openid}&lang={$lang}"; $url = "https://api.weixin.qq.com/cgi-bin/user/info?access_token=ACCESS_TOKEN&openid={$openid}&lang={$lang}";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callGetApi($url);
return $this->httpGetForJson($url);
} }
/** /**
@ -71,8 +69,7 @@ class User extends BasicWeChat
foreach ($openids as $openid) { foreach ($openids as $openid) {
$data['user_list'][] = ['openid' => $openid, 'lang' => $lang]; $data['user_list'][] = ['openid' => $openid, 'lang' => $lang];
} }
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, $data);
return $this->httpPostForJson($url, $data);
} }
/** /**
@ -85,37 +82,34 @@ class User extends BasicWeChat
public function getUserList($next_openid = '') public function getUserList($next_openid = '')
{ {
$url = "https://api.weixin.qq.com/cgi-bin/user/get?access_token=ACCESS_TOKEN&next_openid={$next_openid}"; $url = "https://api.weixin.qq.com/cgi-bin/user/get?access_token=ACCESS_TOKEN&next_openid={$next_openid}";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callGetApi($url);
return $this->httpGetForJson($url);
} }
/** /**
* 获取标签下粉丝列表 * 获取标签下粉丝列表
* @param integer $tagid 标签ID * @param integer $tagid 标签ID
* @param string $next_openid 第一个拉取的OPENID * @param string $nextOpenid 第一个拉取的OPENID
* @return array * @return array
* @throws Exceptions\InvalidResponseException * @throws Exceptions\InvalidResponseException
* @throws Exceptions\LocalCacheException * @throws Exceptions\LocalCacheException
*/ */
public function getUserListByTag($tagid, $next_openid = '') public function getUserListByTag($tagid, $nextOpenid = '')
{ {
$url = 'https://api.weixin.qq.com/cgi-bin/user/tag/get?access_token=ACCESS_TOKEN'; $url = 'https://api.weixin.qq.com/cgi-bin/user/tag/get?access_token=ACCESS_TOKEN';
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, ['tagid' => $tagid, 'next_openid' => $nextOpenid]);
return $this->httpPostForJson($url, ['tagid' => $tagid, 'next_openid' => $next_openid]);
} }
/** /**
* 获取公众号的黑名单列表 * 获取公众号的黑名单列表
* @param string $begin_openid * @param string $beginOpenid
* @return array * @return array
* @throws Exceptions\InvalidResponseException * @throws Exceptions\InvalidResponseException
* @throws Exceptions\LocalCacheException * @throws Exceptions\LocalCacheException
*/ */
public function getBlackList($begin_openid = '') public function getBlackList($beginOpenid = '')
{ {
$url = "https://api.weixin.qq.com/cgi-bin/tags/members/getblacklist?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/cgi-bin/tags/members/getblacklist?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, ['begin_openid' => $beginOpenid]);
return $this->httpPostForJson($url, ['begin_openid' => $begin_openid]);
} }
/** /**
@ -128,8 +122,7 @@ class User extends BasicWeChat
public function batchBlackList(array $openids) public function batchBlackList(array $openids)
{ {
$url = "https://api.weixin.qq.com/cgi-bin/tags/members/batchblacklist?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/cgi-bin/tags/members/batchblacklist?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, ['openid_list' => $openids]);
return $this->httpPostForJson($url, ['openid_list' => $openids]);
} }
/** /**
@ -142,8 +135,6 @@ class User extends BasicWeChat
public function batchUnblackList(array $openids) public function batchUnblackList(array $openids)
{ {
$url = "https://api.weixin.qq.com/cgi-bin/tags/members/batchunblacklist?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/cgi-bin/tags/members/batchunblacklist?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, ['openid_list' => $openids]);
return $this->httpPostForJson($url, ['openid_list' => $openids]);
} }
} }