Menu

test : Hata giderme için test yöntemi

Bu yöntem AJAX POST talep verisini okur, onu çözümler ve bir dizi olarak çıktı haline getirir. Post verisini aynı zamanda işlenmemiş bir biçimde de çıktı haline getirir. Kodunuzdaki hataları gidermek için bunu kullanabilirsiniz.

Adres: https://api.anti-captcha.com/test
Yöntem: POST
Content-type: application-json

Talep örneği

curl -i -H "Accept: application/json" \
     -H "Content-Type: application/json" \
     -X POST -d '{
"clientKey":"myClientKey",
"hello" : "world",
"apitest" : true
}' https://api.anti-captcha.com/test

Yanıt örneği

HTTP/1.1 200 OK
Server: nginx/1.12.1
Date: Tue, 24 Oct 2017 21:25:57 GMT
Content-Type: text/html; charset=utf-8
Transfer-Encoding: chunked
Connection: keep-alive

Parsed input JSON:
Array
(
    [clientKey] => myClientKey
    [hello] => world
    [apitest] => 1
)
Raw POST input:
{
"clientKey":"myClientKey",
"hello" : "world",
"apitest" : true
}