쿠키 사용 알림

이 사이트는 쿠키를 사용합니다. 쿠키는 사용자를 기억하고, 이를 통해 개인화된 서비스를 제공할 수 있습니다. 자세한 내용은 더 알아보기를 참조하십시오.

  • Captchas demo
  • reCAPTCHA
  • Others

MTCaptcha 데모

이 페이지에서는 MTCaptcha이 표시되는 방식과 MTCaptcha 확인이 작동하는 방식을 설명합니다. MTCaptcha is a smart captcha service that is GDPR and WCAG compliant, providing the confidence of privacy and accessibility.

«MTCaptcha» 로고

많은 경우에 MTCaptcha은 접근성을 방해하고, 사용자를 좌절시키고, 공개 정보에 대한 접근을 제한하고, 애플리케이션 및 사이트 테스트를 어렵게 만듭니다. 자동 우회를 위해서는 MTCaptcha 솔버를 사용하세요.

How to solve MTCaptcha

  1. Find the websiteKey parameter: call window.mtcaptchaConfig.sitekey or window.mtcaptcha.getConfiguration().sitekey in your browser console.

  2. Send websiteKey and websiteURL 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
    }
  3. In developer's console, find input with name="mtcaptcha-verifiedtoken", and put there received token. Then, click the Check button.