获取直播房间信息
请求地址
GET /api/live/v1/room/{id}
字段 |
是否可选 |
类型 |
描述 |
Authorization |
否 |
string |
认证信息,格式:bearer ${token} |
Accept-Language |
是 |
string |
选择语言,(zh-CN)(zh-TW)(en-US) 默认值: zh-CN |
Content-Type |
是 |
string |
application/x-www-form-urlencoded |
响应参数
字段 |
类型 |
描述 |
resCode |
int |
响应码 |
resMessage |
String |
提示消息(根据language参数,选择语言返回) |
data |
json |
响应数据 |
成功返回
http/1.1 200 OK
{
"resCode":1,
"resMessage":"success",
"data":{
"inviteCode":362879183,
"liveRoom":{
"id":131,
"liveName":"will直播房间",
"status":1,
"verifyMode":0,
"companyId":91504,
"liveUri":"https://live.hst.com/xxxxxxxxx",
"anchorName":"will",
"logoUrl":"https://static.livecdn.com/logo.png",
"coverUrl":"https://static.livecdn.com/cover.png",
"liveInfo":"这是一个直播间",
"startTime":1516505700000,
"endTime":1516592400000,
"confRoomId":206094,
"confRoomName":"will直播房间"
"depId":2,
"depName":"will"
}
}
}
失败返回
http/1.1 200 OK
{
"resCode": -1,
"resMessage": "xxx",
}