동영상 업로드 진행 조회

업로드 토큰을 이용하여 동영상 업로드의 진행값을 전송된 파일 용량값과 진행율(0~100%) 형태로 조회합니다.

🚧

  • 과도한 API 요청이 발생하는 경우 사용량이 제한될 수 있습니다.
  • 또한 현재 제공 중인 API의 종류 및 내용은 더 나은 API 서비스 제공을 위해 변경 및 업데이트될 수 있습니다.

Request URL

GET {uploadUrl}/uploadStatus.json?token={token}

Request Parameters

Parameter NameTypeDescription
token (required)String업로드 토큰

Response Example

{
    process: “0”, // To display the upload status from 0 to 100%
    readKByte: 1188, // Not currently used
    chunkedReadByte: 0, // Not currently used
    readByte: 118833152, // Been uploaded to the server capacity (Includes the header)
}