From 9afb0a29c658d52dc7b9d46d2f848602124936b7 Mon Sep 17 00:00:00 2001 From: Anyon Date: Sat, 14 Mar 2020 14:58:18 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E5=B0=8F=E7=A8=8B=E5=BA=8F?= =?UTF-8?q?=E7=9B=B4=E6=92=AD=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- We.php | 2 +- WeMini/Live.php | 56 +++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 57 insertions(+), 1 deletion(-) create mode 100644 WeMini/Live.php 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