更新海报信息
请求地址
PUT /api/live/v1/room/{id}/posters
字段 |
是否可选 |
类型 |
描述 |
Authorization |
否 |
string |
认证信息,格式:bearer ${token} |
Accept-Language |
是 |
string |
选择语言,(zh-CN)(zh-TW)(en-US) 默认值: zh-CN |
Content-Type |
否 |
string |
application/json |
请求参数
字段 |
是否可选 |
类型 |
描述 |
show |
否 |
Boolean |
海报开关,为true时,下面参数必传 |
second |
是 |
int |
自动跳转秒数,倒计时秒数,范围:1-5秒 |
skip |
是 |
Boolean |
点击海报是否跳转,默认false |
skipUrl |
是 |
String |
跳转链接,skip为true时,必传 |
jump |
是 |
Boolean |
是否允许观众跳过海报,默认true |
posterUrl |
是 |
String |
海报链接 |
响应参数
字段 |
类型 |
描述 |
resCode |
int |
响应码 |
resMessage |
String |
提示消息(根据language参数,选择语言返回) |
data |
json |
响应数据 |
成功返回
http/1.1 200 OK
{
"resCode": 1,
"resMessage": "success",
"data":{
"liveRoomId":1,
"show":true,
"second":3,
"skip":true,
"skipUrl":"http://xxx.com",
"jump":true,
"posterUrl":"http://xxx"
}
}
失败返回
http/1.1 200 OK
{
"resCode": -1,
"resMessage": "xxx",
}