registerApi($url, __FUNCTION__, func_get_args()); 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 = 'http://api.weixin.qq.com/wxa/business/getliveinfo?access_token=ACCESS_TOKEN'; $this->registerApi($url, __FUNCTION__, func_get_args()); return $this->callPostApi($url, $data, true); } }