callPostApi($url, $data, true); } /** * 获取直播房间列表 * @param int $start 起始 * @param int $limit 数量 * @return array * @throws \WeChat\Exceptions\InvalidResponseException * @throws \WeChat\Exceptions\LocalCacheException */ public function getLiveList($start = 0, $limit = 10) { $url = 'https://api.weixin.qq.com/wxa/business/getliveinfo?access_token=ACCESS_TOKEN'; return $this->callPostApi($url, ['start' => $start, 'limit' => $limit], true); } /** * 获取直播/回放信息 * @param array $data 查询参数 * @return array * @throws \WeChat\Exceptions\InvalidResponseException * @throws \WeChat\Exceptions\LocalCacheException */ public function getLiveInfo($data = []) { $url = 'https://api.weixin.qq.com/wxa/business/getliveinfo?access_token=ACCESS_TOKEN'; return $this->callPostApi($url, $data, true); } /** * 直播间导入商品 * @param array $data 商品列表 * @return array * @throws \WeChat\Exceptions\InvalidResponseException * @throws \WeChat\Exceptions\LocalCacheException */ public function addLiveGoods($data = []) { $url = 'https://api.weixin.qq.com/wxaapi/broadcast/room/addgoods?access_token=ACCESS_TOKEN'; return $this->callPostApi($url, $data, true); } /** * 商品添加并提审 * @param array $data 商品信息 * @return array * @throws \WeChat\Exceptions\InvalidResponseException * @throws \WeChat\Exceptions\LocalCacheException */ public function addGoods($data) { $url = "https://api.weixin.qq.com/wxaapi/broadcast/goods/add?access_token=ACCESS_TOKEN"; return $this->callPostApi($url, $data, true); } /** * 撤回商品审核 * @param array $data 商品信息 * @return array * @throws \WeChat\Exceptions\InvalidResponseException * @throws \WeChat\Exceptions\LocalCacheException */ public function resetAuditGoods($data) { $url = "https://api.weixin.qq.com/wxaapi/broadcast/goods/resetaudit?access_token=ACCESS_TOKEN"; return $this->callPostApi($url, $data, true); } /** * 重新提交商品审核 * @param array $data 商品信息 * @return array * @throws \WeChat\Exceptions\InvalidResponseException * @throws \WeChat\Exceptions\LocalCacheException */ public function auditGoods($data) { $url = "https://api.weixin.qq.com/wxaapi/broadcast/goods/audit?access_token=ACCESS_TOKEN"; return $this->callPostApi($url, $data, true); } /** * 删除商品 * @param array $data 商品信息 * @return array * @throws \WeChat\Exceptions\InvalidResponseException * @throws \WeChat\Exceptions\LocalCacheException */ public function deleteGoods($data) { $url = "https://api.weixin.qq.com/wxaapi/broadcast/goods/delete?access_token=ACCESS_TOKEN"; return $this->callPostApi($url, $data, true); } /** * 更新商品 * @param array $data 商品信息 * @return array * @throws \WeChat\Exceptions\InvalidResponseException * @throws \WeChat\Exceptions\LocalCacheException */ public function updateGoods($data) { $url = "https://api.weixin.qq.com/wxaapi/broadcast/goods/update?access_token=ACCESS_TOKEN"; return $this->callPostApi($url, $data, true); } /** * 获取商品状态 * @param array $data 商品ID列表 * @return array * @throws \WeChat\Exceptions\InvalidResponseException * @throws \WeChat\Exceptions\LocalCacheException */ public function stateGoods($data) { $url = "https://api.weixin.qq.com/wxa/business/getgoodswarehouse?access_token=ACCESS_TOKEN"; return $this->callPostApi($url, $data, true); } /** * 获取商品列表 * @param int $offset 起始 * @param int $status 0 未审 |1 审核中 |2 通过 |3 驳回 * @param int $limit 数量(<=100) * @return array * @throws \WeChat\Exceptions\InvalidResponseException * @throws \WeChat\Exceptions\LocalCacheException */ public function getGoods($offset, $status, $limit = 30) { $url = "https://api.weixin.qq.com/wxaapi/broadcast/goods/getapproved?access_token=ACCESS_TOKEN&offset={$offset}&limit={$limit}&status={$status}"; return $this->callGetApi($url); } /** * 删除直播间 * @param array $data 房间信息 * @return array * @throws \WeChat\Exceptions\InvalidResponseException * @throws \WeChat\Exceptions\LocalCacheException */ public function delLive($data) { $url = "https://api.weixin.qq.com/wxaapi/broadcast/room/deleteroom?access_token=ACCESS_TOKEN"; return $this->callPostApi($url, $data, true); } /** * 编辑直播间 * @param array $data 房间信息 * @return array * @throws \WeChat\Exceptions\InvalidResponseException * @throws \WeChat\Exceptions\LocalCacheException */ public function editLive($data) { $url = "https://api.weixin.qq.com/wxaapi/broadcast/room/editroom?access_token=ACCESS_TOKEN"; return $this->callPostApi($url, $data, true); } /** * 获取推流地址 * @param string $roomId 房间ID * @return array * @throws \WeChat\Exceptions\InvalidResponseException * @throws \WeChat\Exceptions\LocalCacheException */ public function getPushUrl($roomId) { $url = "https://api.weixin.qq.com/wxaapi/broadcast/room/getpushurl?access_token=ACCESS_TOKEN&roomId={$roomId}"; return $this->callGetApi($url); } /** * 获取直播间分享码 * @param string $roomId 房间ID * @param string $params 自定义参数 * @return array * @throws \WeChat\Exceptions\InvalidResponseException * @throws \WeChat\Exceptions\LocalCacheException */ public function getShareCode($roomId, $params = '') { $url = "https://api.weixin.qq.com/wxaapi/broadcast/room/getsharedcode?access_token=ACCESS_TOKEN&roomId={$roomId}¶ms={$params}"; return $this->callGetApi($url); } /** * 添加小助手 * @param array $data 助手信息 * @return array * @throws \WeChat\Exceptions\InvalidResponseException * @throws \WeChat\Exceptions\LocalCacheException */ public function addAssistant($data) { $url = "https://api.weixin.qq.com/wxaapi/broadcast/room/addassistant?access_token=ACCESS_TOKEN"; return $this->callPostApi($url, $data, true); } /** * 修改小助手 * @param array $data 助手信息 * @return array * @throws \WeChat\Exceptions\InvalidResponseException * @throws \WeChat\Exceptions\LocalCacheException */ public function modifyAssistant($data) { $url = "https://api.weixin.qq.com/wxaapi/broadcast/room/modifyassistant?access_token=ACCESS_TOKEN"; return $this->callPostApi($url, $data, true); } /** * 删除小助手 * @param array $data 助手信息 * @return array * @throws \WeChat\Exceptions\InvalidResponseException * @throws \WeChat\Exceptions\LocalCacheException */ public function removeAssistant($data) { $url = "https://api.weixin.qq.com/wxaapi/broadcast/room/removeassistant?access_token=ACCESS_TOKEN"; return $this->callPostApi($url, $data, true); } /** * 查询小助手列表 * @param string $roomId 房间ID * @return array * @throws \WeChat\Exceptions\InvalidResponseException * @throws \WeChat\Exceptions\LocalCacheException */ public function getAssistantList($roomId) { $url = "https://api.weixin.qq.com/wxaapi/broadcast/room/getassistantlist?access_token=ACCESS_TOKEN&roomId={$roomId}"; return $this->callGetApi($url); } /** * 添加主播副号 * @param array $data 副号信息 * @return array * @throws \WeChat\Exceptions\InvalidResponseException * @throws \WeChat\Exceptions\LocalCacheException */ public function addSubAnchor($data) { $url = "https://api.weixin.qq.com/wxaapi/broadcast/room/addsubanchor?access_token=ACCESS_TOKEN"; return $this->callPostApi($url, $data, true); } /** * 修改主播副号 * @param array $data 副号信息 * @return array * @throws \WeChat\Exceptions\InvalidResponseException * @throws \WeChat\Exceptions\LocalCacheException */ public function modifySubAnchor($data) { $url = "https://api.weixin.qq.com/wxaapi/broadcast/room/modifysubanchor?access_token=ACCESS_TOKEN"; return $this->callPostApi($url, $data, true); } /** * 删除主播副号 * @param array $data 副号信息 * @return array * @throws \WeChat\Exceptions\InvalidResponseException * @throws \WeChat\Exceptions\LocalCacheException */ public function delSubAnchor($data) { $url = "https://api.weixin.qq.com/wxaapi/broadcast/room/deletesubanchor?access_token=ACCESS_TOKEN"; return $this->callPostApi($url, $data, true); } /** * 查询主播副号 * @param string $roomId 房间ID * @return array * @throws \WeChat\Exceptions\InvalidResponseException * @throws \WeChat\Exceptions\LocalCacheException */ public function getSubAnchor($roomId) { $url = "https://api.weixin.qq.com/wxaapi/broadcast/room/getsubanchor?access_token=ACCESS_TOKEN&roomId={$roomId}"; return $this->callGetApi($url); } /** * 开关官方收录 * @param array $data 房间配置 * @return array * @throws \WeChat\Exceptions\InvalidResponseException * @throws \WeChat\Exceptions\LocalCacheException */ public function updateFeedPublic($data) { $url = "https://api.weixin.qq.com/wxaapi/broadcast/room/updatefeedpublic?access_token=ACCESS_TOKEN"; return $this->callPostApi($url, $data, true); } /** * 开关回放 * @param array $data 房间配置 * @return array * @throws \WeChat\Exceptions\InvalidResponseException * @throws \WeChat\Exceptions\LocalCacheException */ public function updateReplay($data) { $url = "https://api.weixin.qq.com/wxaapi/broadcast/room/updatereplay?access_token=ACCESS_TOKEN"; return $this->callPostApi($url, $data, true); } /** * 开关客服 * @param array $data 房间配置 * @return array * @throws \WeChat\Exceptions\InvalidResponseException * @throws \WeChat\Exceptions\LocalCacheException */ public function updateKf($data) { $url = "https://api.weixin.qq.com/wxaapi/broadcast/room/updatekf?access_token=ACCESS_TOKEN"; return $this->callPostApi($url, $data, true); } /** * 开关全局禁言 * @param array $data 房间配置 * @return array * @throws \WeChat\Exceptions\InvalidResponseException * @throws \WeChat\Exceptions\LocalCacheException */ public function updateComment($data) { $url = "https://api.weixin.qq.com/wxaapi/broadcast/room/updatecomment?access_token=ACCESS_TOKEN"; return $this->callPostApi($url, $data, true); } /** * 上下架商品 * @param array $data 商品参数 * @return array * @throws \WeChat\Exceptions\InvalidResponseException * @throws \WeChat\Exceptions\LocalCacheException */ public function goodsOnsale($data) { $url = "https://api.weixin.qq.com/wxaapi/broadcast/goods/onsale?access_token=ACCESS_TOKEN"; return $this->callPostApi($url, $data, true); } /** * 删除直播间商品 * @param array $data 商品参数 * @return array * @throws \WeChat\Exceptions\InvalidResponseException * @throws \WeChat\Exceptions\LocalCacheException */ public function goodsDeleteInRoom($data) { $url = "https://api.weixin.qq.com/wxaapi/broadcast/goods/deleteInRoom?access_token=ACCESS_TOKEN"; return $this->callPostApi($url, $data, true); } /** * 推送商品 * @param array $data 商品参数 * @return array * @throws \WeChat\Exceptions\InvalidResponseException * @throws \WeChat\Exceptions\LocalCacheException */ public function goodsPush($data) { $url = "https://api.weixin.qq.com/wxaapi/broadcast/goods/push?access_token=ACCESS_TOKEN"; return $this->callPostApi($url, $data, true); } /** * 商品排序 * @param array $data 排序参数 * @return array * @throws \WeChat\Exceptions\InvalidResponseException * @throws \WeChat\Exceptions\LocalCacheException */ public function goodsSort($data) { $url = "https://api.weixin.qq.com/wxaapi/broadcast/goods/sort?access_token=ACCESS_TOKEN"; return $this->callPostApi($url, $data, true); } /** * 下载商品讲解视频 * @param array $data 商品信息 * @return array * @throws \WeChat\Exceptions\InvalidResponseException * @throws \WeChat\Exceptions\LocalCacheException */ public function getVideo($data) { $url = "https://api.weixin.qq.com/wxaapi/broadcast/goods/getVideo?access_token=ACCESS_TOKEN"; return $this->callPostApi($url, $data, true); } /** * 获取长期订阅用户 * @param array $data 查询参数 * @return array * @throws \WeChat\Exceptions\InvalidResponseException * @throws \WeChat\Exceptions\LocalCacheException */ public function getFollowers($data) { $url = "https://api.weixin.qq.com/wxa/business/get_wxa_followers?access_token=ACCESS_TOKEN"; return $this->callPostApi($url, $data, true); } /** * 长订阅群发 * @param array $data 消息参数 * @return array * @throws \WeChat\Exceptions\InvalidResponseException * @throws \WeChat\Exceptions\LocalCacheException */ public function pushMessage($data) { $url = "https://api.weixin.qq.com/wxa/business/push_message?access_token=ACCESS_TOKEN"; return $this->callPostApi($url, $data, true); } /** * 设置成员角色 * @param array $data 角色参数 * @return array * @throws \WeChat\Exceptions\InvalidResponseException * @throws \WeChat\Exceptions\LocalCacheException */ public function addRole($data) { $url = "https://api.weixin.qq.com/wxaapi/broadcast/role/addrole?access_token=ACCESS_TOKEN"; return $this->callPostApi($url, $data, true); } /** * 解除成员角色 * @param array $data 角色参数 * @return array * @throws \WeChat\Exceptions\InvalidResponseException * @throws \WeChat\Exceptions\LocalCacheException */ public function delRole($data) { $url = "https://api.weixin.qq.com/wxaapi/broadcast/role/deleterole?access_token=ACCESS_TOKEN"; return $this->callPostApi($url, $data, true); } /** * 查询成员角色 * @param int $role 角色过滤,-1 全部 * @param int $offset 起始 * @param int $limit 数量 * @param string $keyword 关键词 * @return array * @throws \WeChat\Exceptions\InvalidResponseException * @throws \WeChat\Exceptions\LocalCacheException */ public function getRole($role = -1, $offset = 0, $limit = 30, $keyword = '') { $url = "https://api.weixin.qq.com/wxaapi/broadcast/role/getrolelist?access_token=ACCESS_TOKEN&offset={$offset}&limit={$limit}&keyword={$keyword}&role={$role}"; return $this->callGetApi($url); } }