Join And Get Free Trial!

getTaskResult#


Retourneert de resultaten van de taak.
Het resultaatformaat is afhankelijk van het taaktype en wordt beschreven in de taakspecificatie. .

API-eindpunt: https://api.nextcaptcha.com/getTaskResult

methode: POST

Inhoudstype: application/json

Eigenschappen opvragen#

naamtypeVereistBeschrijving
clientKeySnaarJaUw API-sleutel
taskIdGeheel getalJataak-id

Voorbeeld aanvragen#

{
  "clientKey": "api key",
  "taskId": 1781234567890
}

Voorbeeld van antwoord#

Verwerken#

{
  "errorId": 0,
  "status": "processing"
}

Taakverwerking is mislukt#

{
  "errorId": 12,
  "errorCode": "ERROR_CAPTCHA_UNSOLVABLE",
  "errorDescription": "captcha could not be solved,because proxy is not allowed for this task"
}

Taak volbracht#

{
  "errorId": 0,
  "status": "ready",
  "solution": {
    "gRecaptchaResponse": "03AOLTBLR8z..."
  }
}