获取任务信息
GET
/uniapp-service/api/runway/getTask请求参数
Query 参数
taskId
string
taskId
示例代码
返回响应
成功(200)
没有权限(401)
禁止访问(403)
记录不存在(404)
HTTP 状态码: 200
内容格式: JSON*/*
OK
数据结构
接口调用返回结果
code
integer <int32>
必需
返回结果状态码,0为成功,非0为失败
示例值:
0
message
string
返回结果说明信息
示例值:
执行成功
result
object (RunwayTaskVO)
返回结果数据
callbackUrl
string
回调通知地址
示例值:
http://baidu.com
createdTime
string
创建时间
示例值:
yyyy-MM-dd HH:mm:ss
error
string
错误信息
id
string
必需
Runway任务ID
示例值:
123456
images
array[object (RunwayTaskImageVO) {6}]
图片资源信息
modifiedTime
string
修改时间
示例值:
yyyy-MM-dd HH:mm:ss
ratio
string
必需
图片宽度与高度之比,16:9,9:16
示例值:
16:9
seconds
integer <int32>
必需
视频时长,5 或 10
示例值:
10
taskStatusCode
integer <int32>
必需
任务状态,0:新增;1:排队中;2:视频制作中;3:视频制作成功;4:视频制作失败
示例值:
0
taskType
string
必需
任务类型,gen3a_turbo,gen3a,gen2
示例值:
gen3a_turbo
textPrompt
string
提示词
示例值:
fly
videoUrl
string
视频下载地址
示例值:
http://baidu.com
success
boolean
是否成功标志
示例值:
true
timestamp
integer <int64>
返回的时间戳
示例
{
"code": 0,
"message": "执行成功",
"result": {
"callbackUrl": "http://baidu.com",
"createdTime": "yyyy-MM-dd HH:mm:ss",
"error": "string",
"id": "123456",
"images": [
{
"createdTime": "yyyy-MM-dd HH:mm:ss",
"frameIndex": 0,
"imageActual": "string",
"imageOrg": "string",
"modifiedTime": "yyyy-MM-dd HH:mm:ss",
"taskId": "123456"
}
],
"modifiedTime": "yyyy-MM-dd HH:mm:ss",
"ratio": "16:9",
"seconds": 10,
"taskStatusCode": 0,
"taskType": "gen3a_turbo",
"textPrompt": "fly",
"videoUrl": "http://baidu.com"
},
"success": true,
"timestamp": 0
}
最后修改时间: 2 个月前