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
}