获取生成结果
curl --request POST \
--url https://open251124.ai.jko.cc/workflow/getResult \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"id": 1
}'const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({id: 1})
};
fetch('https://open251124.ai.jko.cc/workflow/getResult', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://open251124.ai.jko.cc/workflow/getResult"
payload = { "id": 1 }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text){
"status": 100,
"message": "操作成功",
"data": {
"id": 376592,
"status": "Success",
"temporary_url": "https://ark-acg-beijing.tos-cn-beijing.volces.com/doubao-seedance-2-5/cgt-20260904165749-7pm5n.mp4",
"msg": null
}
}获取生成结果
获取生成结果
POST
/
workflow
/
getResult
获取生成结果
curl --request POST \
--url https://open251124.ai.jko.cc/workflow/getResult \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"id": 1
}'const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({id: 1})
};
fetch('https://open251124.ai.jko.cc/workflow/getResult', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://open251124.ai.jko.cc/workflow/getResult"
payload = { "id": 1 }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text){
"status": 100,
"message": "操作成功",
"data": {
"id": 376592,
"status": "Success",
"temporary_url": "https://ark-acg-beijing.tos-cn-beijing.volces.com/doubao-seedance-2-5/cgt-20260904165749-7pm5n.mp4",
"msg": null
}
}最后修改于 2026年9月16日
⌘I

