View Source WeChat.MiniProgram.Live.Room (wechat v0.16.0)
小程序 - 直播间管理
Summary
Types
是否开启禁言 【0:开启,1:关闭】
是否关闭客服 【0:开启,1:关闭】
是否关闭回放 【0:开启,1:关闭】
是否开启官方收录 【1: 开启,0:关闭】
上下架 【0:下架,1:上架】
Functions
添加管理直播间小助手 - 官方文档
直播间导入商品 - 官方文档
创建直播间 - 官方文档
删除直播间 - 官方文档
删除主播副号 - 官方文档
编辑直播间 - 官方文档
查询管理直播间小助手 - 官方文档
获取直播间推流地址 - 官方文档
获取直播间分享二维码 - 官方文档
获取主播副号 - 官方文档
删除直播间商品 - 官方文档
下载商品讲解视频 - 官方文档
直播间商品排序 - 官方文档
删除管理直播间小助手 - 官方文档
开启/关闭直播间全局禁言 - 官方文档
开启/关闭直播间官方收录 - 官方文档
开启/关闭客服功能 - 官方文档
开启/关闭回放功能 - 官方文档
Types
@type is_ban_comment() :: boolean() | 0 | 1
是否开启禁言 【0:开启,1:关闭】
@type is_close_kf() :: boolean() | 0 | 1
是否关闭客服 【0:开启,1:关闭】
@type is_close_replay() :: boolean() | 0 | 1
是否关闭回放 【0:开启,1:关闭】
@type is_feeds_public() :: boolean() | 0 | 1
是否开启官方收录 【1: 开启,0:关闭】
@type is_on_sale() :: boolean() | 0 | 1
上下架 【0:下架,1:上架】
@type limit() :: 1..100
@type room_id() :: integer()
@type start() :: integer()
@type user() :: %{username: WeChat.User.username(), nickname: WeChat.User.nickname()}
@type users() :: [user()]
Functions
@spec add_assistant(WeChat.client(), room_id(), users()) :: WeChat.response()
添加管理直播间小助手 - 官方文档
@spec add_goods(WeChat.client(), room_id(), WeChat.MiniProgram.Live.Goods.goods_ids()) :: WeChat.response()
直播间导入商品 - 官方文档
调用此接口往指定直播间导入已入库的商品
@spec add_subanchor(WeChat.client(), room_id(), WeChat.User.username()) :: WeChat.response()
添加主播副号 - 官方文档
@spec create_room(WeChat.client(), data :: map()) :: WeChat.response()
创建直播间 - 官方文档
该接口可直接创建直播间,创建成功后直播间将在直播间列表展示
@spec delete_room(WeChat.client(), room_id()) :: WeChat.response()
删除直播间 - 官方文档
@spec delete_subanchor(WeChat.client(), room_id()) :: WeChat.response()
删除主播副号 - 官方文档
@spec edit_room(WeChat.client(), data :: map()) :: WeChat.response()
编辑直播间 - 官方文档
@spec get_assistant_list(WeChat.client(), room_id()) :: WeChat.response()
查询管理直播间小助手 - 官方文档
@spec get_live_info(WeChat.client(), start(), limit()) :: WeChat.response()
获取直播房间列表 - 官方文档
该接口可获取直播房间列表
@spec get_push_url(WeChat.client(), room_id()) :: WeChat.response()
获取直播间推流地址 - 官方文档
@spec get_replay(WeChat.client(), room_id(), start(), limit()) :: WeChat.response()
获取直播间回放 - 官方文档
该接口可在直播结束后拿到回放源视频
@spec get_subanchor(WeChat.client(), room_id()) :: WeChat.response()
获取主播副号 - 官方文档
@spec goods_delete( WeChat.client(), room_id(), WeChat.MiniProgram.Live.Goods.goods_id() ) :: WeChat.response()
删除直播间商品 - 官方文档
@spec goods_get_video( WeChat.client(), room_id(), WeChat.MiniProgram.Live.Goods.goods_id() ) :: WeChat.response()
下载商品讲解视频 - 官方文档
@spec goods_onsale( WeChat.client(), room_id(), WeChat.MiniProgram.Live.Goods.goods_id(), is_on_sale() ) :: WeChat.response()
上下架直播间商品 - 官方文档
@spec goods_push(WeChat.client(), room_id(), WeChat.MiniProgram.Live.Goods.goods_id()) :: WeChat.response()
推送商品 - 官方文档
@spec goods_sort( WeChat.client(), room_id(), WeChat.MiniProgram.Live.Goods.goods_ids() ) :: WeChat.response()
直播间商品排序 - 官方文档
@spec modify_assistant( WeChat.client(), room_id(), WeChat.User.username(), WeChat.User.nickname() ) :: WeChat.response()
修改管理直播间小助手 - 官方文档
@spec modify_subanchor(WeChat.client(), room_id(), WeChat.User.username()) :: WeChat.response()
修改主播副号 - 官方文档
@spec remove_assistant(WeChat.client(), room_id(), WeChat.User.username()) :: WeChat.response()
删除管理直播间小助手 - 官方文档
@spec update_comment(WeChat.client(), room_id(), is_ban_comment()) :: WeChat.response()
开启/关闭直播间全局禁言 - 官方文档
@spec update_feed_public(WeChat.client(), room_id(), is_feeds_public()) :: WeChat.response()
开启/关闭直播间官方收录 - 官方文档
@spec update_kf(WeChat.client(), room_id(), is_close_kf()) :: WeChat.response()
开启/关闭客服功能 - 官方文档
@spec update_replay(WeChat.client(), room_id(), is_close_replay()) :: WeChat.response()
开启/关闭回放功能 - 官方文档