Birçok durumda MTCaptcha erişilebilirliği engeller, kullanıcıları hayal kırıklığına uğratır, açık bilgilere erişimi sınırlar, uygulama ve sitelerin test edilmesini zorlaştırır. Otomatik bypass için MTCaptcha çözücüsünü kullanın.
MTCaptcha demo
Bu sayfa MTCaptcha'in nasıl görüntülendiğini ve MTCaptcha doğrulamasının nasıl çalıştığını açıklar. MTCaptcha is a smart captcha service that is GDPR and WCAG compliant, providing the confidence of privacy and accessibility.
How to solve MTCaptcha
Find the
websiteKey
parameter: callwindow.mtcaptchaConfig.sitekey
orwindow.mtcaptcha.getConfiguration().sitekey
in your browser console.Send
websiteKey
andwebsiteURL
to our API.Manually:
Request examples:
Method: createTask
API endpoint:https://api.2captcha.com/createTask
MtCaptchaTaskProxyless
{ "clientKey": "{{clientKey}}", "task": { "type": "MtCaptchaTaskProxyless", "websiteURL": "https://2captcha.com/demo/mtcaptcha", "websiteKey": "MTPublic-KzqLY1cKH" } }
MtCaptchaTask
{ "clientKey": "{{clientKey}}", "task": { "type": "MtCaptchaTask", "websiteURL": "https://2captcha.com/demo/mtcaptcha", "websiteKey": "MTPublic-KzqLY1cKH", "proxyType":"http", "proxyAddress":"1.2.3.4", "proxyPort":"8080", "proxyLogin":"user23", "proxyPassword":"p4$w0rd" } }
Response example
{ "errorId": 0, "status": "ready", "solution": { "token": "v1(00cc43a5,1adfe4b4,MTPublic-DemoKey9M,0080ab49...IJexMsishqlg**)" }, "cost": "0.00299", "ip": "1.2.3.4", "createTime": 1695129688, "endTime": 1695129702, "solveCount": 1 }
In developer's console, find
input
withname="mtcaptcha-verifiedtoken"
, and put there receivedtoken
. Then, click theCheck
button.