(59) Kết quả Tác vụ Kiểm tra trước Video có thể mua sắm
Tình huống kích hoạt
Webhook Video Precheck Result được kích hoạt khi Precheck Video Content API được gọi, và cung cấp kết quả đánh giá chất lượng cũng như kiểm tra vi phạm của video.
Tham số nghiệp vụ dữ liệu
| Parameter name | Data Type | Sample | Description |
|---|---|---|---|
| type | int | 59 | ID của loại webhook. |
| tts_notification_id | string | "7327112393057389710" | ID của thông báo. |
| creator_open_id | string | "VIyStQAAAADCBQ40s4TzODDSEIW-bM5O9cod3vK8OytW8m-bnBYlXw" | open_id của nhà sáng tạo. Để lấy giá trị, xem Authorization overview. |
| timestamp | int | 1644412885 | Dấu thời gian UNIX khi webhook này được kích hoạt. |
| data | object | ||
| └task_id | string | "7493990579714178574" | ID của tác vụ kiểm tra trước được TikTok Shop tạo ra. |
| └violation_check_result | object | ||
| └└status | string | SUCCESS | Các giá trị liệt kê có thể có: SUCCESS FAIL PROCESSING |
| └└issues | []object | ||
| └└└risk | string | "HIGH" | Loại rủi ro. |
| └└└suggestions | string | "Your video may include unoriginal content. Creating original content is essential for standing out from the crowd." | Gợi ý cách khắc phục rủi ro. |
| └good_quality_check_result | object | ||
| └└status | string | FAIL | Các giá trị liệt kê có thể có: SUCCESS FAIL PROCESSING |
| └└issues | []object | ||
| └└└code | string | "LOW RESOLUTION" | Mã kiểm tra chất lượng. |
| └└└suggestions | string | "Your video may include unoriginal content. Creating original content is essential for standing out from the crowd." | Cách cải thiện chất lượng video. |
Ví dụ sự kiện
JSONWord Wrap
{
"type": 59,
"creator_open_id": "VIyStQAAAADCBQ40s4TzOSSOEIW-bM5O9cod3vK8OytW8m-bnBYlXw",
"tts_notification_id": "7327112393057371910",
"timestamp": 1644412885,
"data": {
"task_id": "task_202402011200001234",
"violation_check_result": {
"status": "FAIL",
"issues": [
{
"risk": "HIGH",
"suggestions": "Remove prohibited visual elements and resubmit the video."
}
]
},
"good_quality_check_result": {
"status": "SUCCESS",
"issues": [
{
"code": "LOW_RESOLUTION",
"suggestions": "Consider uploading a higher-resolution video for better viewing experience."
}
]
}
}
}