Menu

test :هذا الأمر يعمل على اكتشاف الأخطاء

يعمل هذا الأمر على قراءة بيانات طلب AJAX POST، وتحليلها وإظهارها كمصفوفة يمكن الاستفادة منها. كما أنه يقوم بعرض البيانات بصورة أولية. لذلك يمكنك استخدام هذه الطريقة لاستكشاف الأخطاء البرمجية المتعلقة بتطبيقك.

العنوان: 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
}