编辑视频信息
更新时间:2012-12-06
接口描述
该接口用于编辑视频信息。
请求地址
https://spark.bokecc.com/api/video/update
请求方式
GET
请求参数
以下请求参数需要进行THQS权限认证, 权限认证方式请参考THQS认证方式。
名称 |
类型 |
必填 |
描述 |
videoid |
String |
是 |
视频ID。 |
userid |
String |
是 |
用户ID。 |
title |
String |
否 |
视频标题。 |
tag |
String |
否 |
视频标签。 |
description |
String |
否 |
视频描述。 |
categoryid |
String |
否 |
视频子分类ID。 |
playurl |
String |
否 |
视频播放页面地址,如果不编辑播放地址,请勿加入此参数。 |
imageindex |
String |
否 |
视频封面截图序号,如果不编辑封面截图,请勿加入此参数。注:只可编辑正常可播放状态的视频截图。 |
format |
String |
否 |
返回格式,xml或json,默认xml。 |
请求示例
https://spark.bokecc.com/api/video/update?videoid=6D080640AF53B5D363835A29B2A11xxx&time=1670928802076&title=%E4%BF%AE%E6%94%B9%E6%A0%87%E9%A2%98&userid=xxxxxx&hash=DA436A5EF7F9AF7C9A2C0927FA8F1D01
返回数据
名称 |
类型 |
说明 |
video |
Object |
视频信息。 |
video说明
名称 |
类型 |
说明 |
id |
String |
视频ID。 |
title |
String |
类型视频标题。 |
desp |
String |
类型视频描述。 |
tags |
String |
类型视频标签。 |
category |
String |
类型视频分类ID。 |
playurl |
String |
类型视频播放页面地址。 |
imageindex |
Integer |
视频截图序号。 |
XML返回示例
<?xmlversion="1.0"encoding="UTF-8"?>
<video>
<id>01234567</id>
<title></title>
<desp></desp>
<tags></tags>
<category>12345</category>
<playurl>http://xxxx/1.html</playurl>
<imageindex>1</imageindex>
</video>
JSON返回示例
{
"video": {
"id": "01234567",
"title": "Video Title",
"desp": "Video Description",
"tags": "tag1 tag2 tag3",
"category": "12345",
"playurl": "http://xxxx/1.html",
"imageindex": 1
}
}