OMNIOUS.AI API Docs (KR)
  • 옴니어스 API 개요
  • 옴니어스 태거 API 개요
  • 옴니어스 태거 API
    • 이미지 가이드
    • 속성 가이드
    • API 인증 가이드
    • API 가이드
    • BULK API 가이드
    • 오류 정보
  • 옴니어스 렌즈 API 개요
  • 옴니어스 렌즈 API
    • API 인증 가이드
    • Data Management API 가이드
    • Recommendation API 가이드
    • Camera Search API 가이드
    • 오류 정보
Powered by GitBook
On this page

Was this helpful?

  1. 옴니어스 태거 API

오류 정보

오류 정보 | Error

옴니어스 태거 API 사용 시, 발생하는 에러는 다음과 같습니다.

Code

Message(EN)

설명

609

Authentication failed. Make sure the API key is correct or you have the correct permissions.

API KEY가 잘못 입력되었거나 권한이 없는 경우 발생.

612

An API key is required. Please check X-API-KEY header.

X-API-KEY 헤더 값을 입력하지 않은 경우 발생.

623

Invalid access. Make sure the URI and method (POST, GET) are correct.

존재하지 않은 resource 또는 Method를 호출하는 경우 발생.

호출한 API의 URL과 Method (POST, GET) 이 롤바른지 확인 필요.

500

Internal Server Error

네트웍, 서버 등의 내부 인프라 장애와 구현 상의 오류 및 트랜잭션 처리 시, 발생 함.

801

This image content should remove base64 header.

base64 헤더 없음

802

Fail to prove base64 image.

base64 image 가져오기 실패

803

Fail to prove image from url.

url image 가져오기 실패

804

The 'image.type' field value 'url, **** base64' does not match any of the allowed values!

image type이 url,base64가 아님

805

This image format is not supported.

image format 지원안함

(지원하는 image format:BMP, GIF, JPEG, PNG, TIFF, WEBP)

806

The aspect ratio of this image is unsupported.

이미지의 가로, 세로 비율이 적합하지 않음

807

The width or height of this image is too small.

가로 또는 세로 길이가 너무 작음

808

The width or height of this image is too large.

가로 또는 세로 길이가 너무 큼

809

The size of this image is too large.

이미지 크기가 너무 큼

823

Tagger usage count is exceeded

tagger 사용량 초과

824

Invalid json format.

유효하지 않은 json 포멧

825

The '{}' field value 'OUTER, TOP, PANTS, SKIRT, DRESS, JUMPSUIT

, NODETC' does not match any of the allowed values!

지원하지 않는 detection 옵션에 대한 에러 처리

826

Can't supported '{}' language

지원하지 않는 language에 대한 에러 처리

831

All 'taggingRequest' validation failed. If strict mode on, one image fail causes all fail.

message validation이 모두 실패한 경우(option=STRICT인 경우는 1건 이상 실패)

832

'taggingRequest' in Bulk API cannot exceed 1000.

1회 요청 개수(1,000개)를 초과한 경우

833

Duplicate image id exists within the task.

TASK ID를 중복해서 요청한 경우

834

Task already expired at '{}'.

TASK 입력시간 만료 이후 데이터 입력 요청한 경우

835

Invalid query string. Make sure query string (offset, size) are correct.

TASK 결과를 받아 볼때, 요청 값이 잘못된 경우 (offset, size)

836

Task not finished. retry after task finished

TASK 처리가 완료되기 전에 결과를 요청한 경우

Example. 에러 코드 반환

에러 발생 시 아래 예시와 같이 error.code 값을 반환합니다.

{
    "data": {},
    "error": {
        "message": "Fail to prove base64 image.",
        "code": 802
    },
    "status": "fail"
}

PreviousBULK API 가이드Next옴니어스 렌즈 API 개요

Last updated 3 years ago

Was this helpful?