ZaloSliderPhoneTask

Kéo thả trên app là một loại hình ảnh xác thực phổ biến trông giống như thế này

1.Tạo yêu cầu

Request

POST : https://omocaptcha.com/v2/createTask

Name
Type
Required
Description

clientKey

String

yes

Khóa tài khoản khách hàng

task.type

String

yes

Tên class dịch vụ captcha cần giải

task.imageBase64

String

yes

{
    "clientKey": "API_KEY",
    "task": {
        "type": "ZaloSliderPhoneTask",
        "imageBase64": "BASE64_BODY_HERE"
    }
}

Response

{
    "errorId": 0,
    "taskId": "49f9f60a-c809-4af0-93c0-0409b72e67e0"
}
  • Máy chủ sẽ trả về errorId = 0taskId thành công

2.Nhận kết quả yêu cầu

Request

POST : https://omocaptcha.com/v2/getTaskResult

{
    "clientKey": "API_KEY",
    "taskId": "49f9f60a-c809-4af0-93c0-0409b72e67e0"
}

Response

{
    "errorId": 0,
    "status": "ready",
    "solution": {
        "start": {
            "x": 100,
            "y": 250
        },
        "end": {
            "x": 300,
            "y": 250
        }
    }
}
  • Máy chủ sẽ trả về errorId = 0 status = ready

  • Đọc kết quả trong solution

Last updated