查询直播间列表

最近更新时间:2024-11-01 17:21:42

我的收藏

接口说明

查询直播间列表,查询使用当前appkey创建的未关闭的直播间。

调用协议

HTTPS + JSON
POST /v2/ivh/liveroom/liveroomservice/listliveroomofappkey
Header Content-Type: application/json;charset=utf-8

请求参数

参数名称
类型
必选
描述
ReqId
string
请求Id,长度为32的uuid
PageIndex
int
页码,从1开始
PageSize
int
每页条数,大于0,小于等于1000

返回参数

参数名称
类型
必选
描述
ReqId
string
单次请求Id,和入参一致
LiveRooms
Arrays of [LiveRoom]
直播间数组,无数据时不返回此字段
Total
int
总条数

LiveRoom
参数
参数名称
类型
必选
描述
LiveRoomId
string
直播间id
Status
int
直播间状态,0-初始状态;1-视频流创建中;2-视频流创建完成;3-拆句完成;4-调度中;5-调度完成;6-关闭
VideoStreamPlayUrl
string
视频流播放地址(视频流创建完成才会返回,即Status=2)

请求示例

{
"Header": {},
"Payload": {
"ReqId": "49eb1ed343a248acaf14c63b15d93697",
"PageIndex": 1,
"PageSize": 10
}
}

返回示例

{
"Header": {
"RequestID": "21add85761b654bdaf714be092ed36e6",
"SessionID": "gza802cc9317234630181331439",
"DialogID": "",
"Code": 0,
"Message": ""
},
"Payload": {
"ReqId": "49eb1ed343a248acaf14c63b15d93697",
"LiveRooms": [{
"LiveRoomId": "lm16430281628057611272",
"VideoStreamPlayUrl": "webrtc://xxx.com/live/lm16430281628057611272?min_delay_ms=100",
"Status": 4
}],
"Total": 1
}
}