获取水印设置
请求地址
GET /api/live/v1/room/{id}/watermark-setting
字段 |
是否可选 |
类型 |
描述 |
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":{
"watermarkConfig":{
"show":true,
"watermarkType":1,
"imageUrl":"",
"content":"hahahahha",
"color":"#ffffff",
"size":10,
"transparency":100,
"showType":1,
"position":1
},
"logoConfig":{
"show":true,
"logoUrl":"http://xxx.com",
"position":1
}
}
}
返回参数
字段 |
是否可选 |
类型 |
描述 |
watermarkConfig |
否 |
object |
水印配置 |
logoConfig |
否 |
object |
视频logo配置 |
watermarkConfig参数说明
字段 |
类型 |
描述 |
show |
bool |
true:开启水印,false:关闭水印 |
watermarkType |
int |
1:文本,2:图片 |
imageUrl |
String |
水印图片Url |
content |
String |
水印文本内容 |
color |
String |
水印字体颜色 |
size |
int |
水印字体大小 |
transparency |
int |
透明度,取值范围:0< = x < = 100 |
showType |
int |
水印显示方式,1:静止显示,2:随机显示,3:循环显示 |
position |
int |
水印位置 1:右上,2:右下,3:左下,4:左上 |
logoConfig参数说明
字段 |
类型 |
描述 |
show |
bool |
true:开启,false:关闭 |
logoUrl |
String |
logo Url |
position |
int |
logo位置,1:右上,2:右下,3:左下,4:左上 |
失败返回
http/1.1 200 OK
{
"resCode": -1,
"resMessage": "xxx",
}