createTask: buat tugas captcha
Alamat: https://api.anti-captcha.com/createTask
Metode: POST
Content-type: application-json
Properti permintaan
Properti | Jenis | Wajib | Tujuan |
---|---|---|---|
clientKey | String | Ya | |
task | Object | Ya | |
softId | Integer | Tidak | |
languagePool | String | Tidak | Dipindahkan ke jenis captcha ImageToTextTask. |
callbackUrl | String | Tidak |
Contoh permintaan
curl -i -H "Accept: application/json" \
-H "Content-Type: application/json" \
-X POST -d '{
"clientKey":"YOUR_API_KEY",
"task":
{
"type":"RecaptchaV2TaskProxyless",
"websiteURL":"http://makeawebsitehub.com/recaptcha/test.php",
"websiteKey":"6LfI9IsUAAAAAKuvopU0hfY8pWADfR_mogXokIIZ"
},
"softId":0
}' https://api.anti-captcha.com/createTask
Struktur respons
Properti | Jenis | Tujuan |
---|---|---|
errorId | Integer | Pengidentifikasi kesalahan. 0 - tidak ada kesalahan, operasi berhasil diselesaikan. >0 - pengidentifikasi kesalahan. Kode kesalahan dan deskripsi singkatnya tersedia di properti errorCode dan errorDescription. |
errorCode | String | |
errorDescription | String | Deskripsi singkat tentang kesalahan |
taskId | Integer |
Contoh respons
JSON tanpa kesalahan
JSON dengan kesalahan
{
"errorId": 0,
"taskId": 7654321
}