diff --git a/We.php b/We.php index 83da261..fb3e691 100644 --- a/We.php +++ b/We.php @@ -85,7 +85,7 @@ class We * 定义当前版本 * @var string */ - const VERSION = '1.2.19'; + const VERSION = '1.2.20'; /** * 静态配置 diff --git a/WeMini/Live.php b/WeMini/Live.php new file mode 100644 index 0000000..a7ff7a0 --- /dev/null +++ b/WeMini/Live.php @@ -0,0 +1,56 @@ +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); + } + +} \ No newline at end of file