Kéo thả trên app

Kéo thả trên phone 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/api/createJob

Host: omocaptcha.com
Content-Type: application/json

{
	"api_token": "YOUR_API_KEY",
	"data": {
		"type_job_id": "24",
		"image_base64": "image as base64 encoded"
	 }
}

Phản hồi

{
	"success": false,
	"job_id": 123456,
	"message": "Create job success."
}
  • Máy chủ sẽ trả về error= falsejob_id thành công

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

Request

POST : https://omocaptcha.com/api/getJobResult

Host: omocaptcha.com
Content-Type: application/json

{
	"api_token": "YOUR_API_KEY",
	"job_id": 123456
}

Phản hồi

{
	"success": false,
	"status": "success",
	"result": "x1|y1|x2|y2"
}
  • Máy chủ sẽ trả về error = falsestatus = success

  • Đọc kết quả trong result

Last updated