Menu

test : 디버깅을 위한 테스트 메서드

이 메서드는 AJAX POST 요청 데이터를 읽고, 구문 분석하여, 배열로 출력합니다. 또한, 포스트 데이터의 경우, raw 형식으로 출력되며, 코드를 디버그하는 데 사용하실 수도 있습니다.

주소: https://api.anti-captcha.com/test
메서드: POST
Content-type: application-json

예제 요청

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

응답 예제

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
}