mirror of
https://gitee.com/zoujingli/WeChatDeveloper.git
synced 2025-04-05 01:42:45 +08:00
171 lines
5.5 KiB
PHP
171 lines
5.5 KiB
PHP
<?php
|
||
|
||
// +----------------------------------------------------------------------
|
||
// | WeChatDeveloper
|
||
// +----------------------------------------------------------------------
|
||
// | 版权所有 2014~2023 ThinkAdmin [ thinkadmin.top ]
|
||
// +----------------------------------------------------------------------
|
||
// | 官方网站: https://thinkadmin.top
|
||
// +----------------------------------------------------------------------
|
||
// | 开源协议 ( https://mit-license.org )
|
||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||
// +----------------------------------------------------------------------
|
||
// | gitee 代码仓库:https://gitee.com/zoujingli/WeChatDeveloper
|
||
// | github 代码仓库:https://github.com/zoujingli/WeChatDeveloper
|
||
// +----------------------------------------------------------------------
|
||
|
||
namespace WeMini;
|
||
|
||
use WeChat\Contracts\BasicWeChat;
|
||
|
||
/**
|
||
* 小程序直播接口
|
||
* Class Live
|
||
* @package WeMini
|
||
*/
|
||
class Live extends BasicWeChat
|
||
{
|
||
/**
|
||
* 创建直播间
|
||
* @param array $data
|
||
* @return array
|
||
* @throws \WeChat\Exceptions\InvalidResponseException
|
||
* @throws \WeChat\Exceptions\LocalCacheException
|
||
*/
|
||
public function create($data)
|
||
{
|
||
$url = 'https://api.weixin.qq.com/wxaapi/broadcast/room/create?access_token=ACCESS_TOKEN';
|
||
return $this->callPostApi($url, $data, true);
|
||
}
|
||
|
||
/**
|
||
* 获取直播房间列表
|
||
* @param integer $start 起始拉取房间
|
||
* @param integer $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
|
||
* @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 array $data
|
||
* @return array
|
||
* @throws \WeChat\Exceptions\InvalidResponseException
|
||
* @throws \WeChat\Exceptions\LocalCacheException
|
||
*/
|
||
public function getGoods($data)
|
||
{
|
||
$url = "https://api.weixin.qq.com/wxaapi/broadcast/goods/getapproved?access_token=ACCESS_TOKEN";
|
||
return $this->callPostApi($url, $data, true);
|
||
}
|
||
} |