Antibot captcha
Giải captcha faucet siêu nhanh, giá siêu tốt, cung cấp extension tự động giải antibot. Hình minh hoạ captcha antibot như sau:





1. Tạo yêu cầu
Request
POST https://api.achicaptcha.com/createTask
clientKey
string
yes
Api key
task.type
string
yes
AntibotCaptchaTask
task.image
string
yes
base64 ảnh main|base64 ảnh 1|base64 ảnh 2|base64 ảnh 3|base64 ảnh 4
task.subType
string
yes
Giá trị: 0
POST /createTask HTTP/1.1
Host: api.achicaptcha.com
Content-Type: application/json
{
"clientKey": "API_KEY của bạn",
"task": {
"type": "AntibotCaptchaTask",
"image": "base64 ảnh main|base64 ảnh 1|base64 ảnh 2|base64 ảnh 3|base64 ảnh 4",
"subType": "0"
}
}Response
Khi thành công, server sẽ trả về errorId = 0 và taskId
{
"errorId": 0,
"taskId": "f2fc70d6-c76b-4fba-9480-205ac1fe9fb9"
}Server sẽ trả về errorId != 0 and errorCode
{
"errorId": 1,
"errorCode": "ERROR_KEY_DOES_NOT_EXIST",
"errorDescription": "ERROR_KEY_DOES_NOT_EXIST"
}2. Lấy kết quả
Request
POST https://api.achicaptcha.com/getTaskResult
clientKey
string
yes
Api key
POST /getTaskResult HTTP/1.1
Host: api.achicaptcha.com
Content-Type: application/json
{
"clientKey": "API_KEY của bạn",
"taskId": "f2fc70d6-c76b-4fba-9480-205ac1fe9fb9"
}Response
{
"errorId": 0,
"status": "ready",
"solution": "swamn"
}{
"errorId": 1,
"status": "processing"
}{
"errorId": khác 0 và 1,
"errorCode": "ERROR_CAPTCHA_UNSOLVABLE",
"errorDescription": "ERROR_CAPTCHA_UNSOLVABLE"
}errorId = 0vàstatus = ready: Giải thành công, đọc kết quả trongsolution, là thứ tự ảnh cần click (tính từ 0)errorId = 1vàstatus = processing: Đang giải captcha, đợi 2 giây rồi thử lạierrorId > 1: Lỗi hệ thống, đưa ra mã lỗi và mô tả lỗi
Last updated