recaptchav2

reCAPTCHA v2とは何ですか

人間とボットを区別するために、reCAPTCHA v2は、チェックボックスをクリックすることで、ユーザーが自分の身元を確認することを要求します。場合によっては、さらにグリッドから特定のタイプの画像を選択するようユーザーに促すこともあります。この2段階認証は、ウェブサイトにさらなるセキュリティ層を提供します。

reCAPTCHA v2 Demo

ベストreCAPTCHA v2ソルバー

Capsolverは、reCAPTCHA v2をバイパスする最も安価で高速なreCAPTCHA v2ソルバーです。

Capsolverは、AIを搭載したCaptcha Solving Algorithmsを使用しているため、解答スピードが速く、コストが大幅に削減され、優れた開発者体験を提供します。

高い信頼性

同種のプロバイダーの中で最速の更新速度を誇ります。

リスクなし

厳正な審査により、違法行為は一切禁止されています。

AIパワー

私たちは、完全自動化されたキャプチャーを解くためにAIを使用しています。

互換性

Capsolverは、一般的な手動キャプチャ認識サービスのAPIで動作します。

多様なソリューション

CapsolverはChrome上でAPIサービスと拡張機能を提供します。

信頼できる

1000以上のプラットフォームが当社のAPIを統合しています。

Capsolverでキャプチャ問題を解決する方法は以下の通りです:

Capsolverサービスを利用した後、ユーザーがキャプチャ問題に遭遇した場合、Capsolverにリクエストを送信します。対応するキャプチャ問題のリクエストを受信すると、Capsolverは効率的かつ迅速にユーザーのためにキャプチャ問題を解決します。

ソリューション価格
reCAPTCHA v2

ReCaptchaV2Task

ReCaptchaV2TaskProxyLess

$0.8/1000 requests
$0.4/1000 images
reCAPTCHA v2 Enterprise

ReCaptchaV2EnterpriseTask

ReCaptchaV2EnterpriseTaskProxyLes

$1/1000 requests
$0.4/1000 images

reCAPTCHA v2をバイパスする方法-APIガイド

Capsolverの自動キャプチャ解決サービスは、簡単にreCAPTCHA v2をバイパスすることができます。Capsolverは、reCAPTCHA v2を解くのに役立つ2つのCaptcha解決サービスを提供しています。

サービスのひとつに Capsolver's API もうひとつは 拡張機能 をクロームに置き換えた。

登録 CapSolverに登録し、キャプチャサービスをご利用ください。

Step 1 : Creating a Task

To solve reCaptcha v2, you first need to create a task using the createTask method.

Here's the structure of the task object:

  • type: Required. This should be ReCaptchaV2Task or ReCaptchaV2TaskProxyLess.
  • websiteURL: Required. This is the web address of the website using reCaptcha v2.
  • websiteKey: Required. This is the domain's public key.
  • proxy: Optional. If you're using a proxy, you can include it here.
  • isInvisible: Optional. If the reCaptcha doesn't have pageAction, set this to true.
  • userAgent: Optional. If you're emulating a browser, include its User-Agent here.
  • cookies: Optional. If you need to use cookies, include them here.

Here's an example request:

{
  "clientKey": "YOUR_API_KEY",
  "task": {
    "type": "ReCaptchaV2Task",
    "websiteURL": "https://www.google.com/recaptcha/api2/demo",
    "websiteKey": "6Le-wvkSAAAAAPBMRTvw0Q4Muexq9bi0DJwx_mJ-",
    "isInvisible": false,
    "userAgent": "",
    "cookies": [
      {
        "name": "__Secure-3PSID",
        "value": "sdadasdasdsda"
      },
      {
        "name": "__Secure-3PAPISID",
        "value": "sd/AytXQTb6RUALqxSEL"
      }
    ],
    "proxy": ""
  }
}

Once the task is successfully submitted, you'll receive a Task ID in the response:

{
  "errorId": 0,
  "errorCode": "",
  "errorDescription": "",
  "taskId": "61138bb6-19fb-11ec-a9c8-0242ac110006"
}

Step 2 : Getting Results

Once you have the Task ID, you can use it to retrieve the solution. Submit the Task ID with the getTaskResult method. The results should be ready within an interval of 1s to 10s.

Here's an example request:

{
  "clientKey": "YOUR_API_KEY",
  "taskId": "61138bb6-19fb-11ec-a9c8-0242ac110006"
}

The response will include the solution token:

{
  "errorId": 0,
  "errorCode": null,
  "errorDescription": null,
  "solution": {
    "userAgent": "xxx",
    "expireTime": 1671615324290,
    "gRecaptchaResponse": "3AHJ....." // This is the solution token
  },
  "status": "ready"
}

Capsolver SDKを使用してreCAPTCHA v2を解く:

人気のキャプチャに対応

簡単にCapsolverを使用してCAPTCHAを解決する方法

私たちは、私たちの製品をお客様のインフラストラクチャにできるだけ簡単に統合できることを保証します。複数の言語をサポートし、すぐに使用できるコード例により、ウェブプロジェクトを迅速かつ簡単に開始できることを保証します。

開発者向けドキュメント

#pip install --upgrade capsolver
#export CAPSOLVER_API_KEY='...'

import capsolver
# capsolver.api_key = "..."
solution = capsolver.solve({
            "type": "ReCaptchaV2TaskProxyLess",
            "websiteURL": "https://www.google.com/recaptcha/api2/demo",
            "websiteKey": "6Le-wvkSAAAAAPBMRTvw0Q4Muexq9bi0DJwx_mJ-",
          })
package main

import (
    "fmt"
    capsolver_go "github.com/capsolver/capsolver-go"
    "log"
)

func main() {
    // first you need to install sdk
    //go get github.com/capsolver/capsolver-go
    //export CAPSOLVER_API_KEY='...' or
    //capSolver := CapSolver{ApiKey:"..."}

    capSolver := capsolver_go.CapSolver{}
    solution, err := capSolver.Solve(map[string]any{
        "type": "ReCaptchaV2TaskProxyLess",
        "websiteURL": "https://www.google.com/recaptcha/api2/demo",
        "websiteKey": "6Le-wvkSAAAAAPBMRTvw0Q4Muexq9bi0DJwx_mJ-",
    })
    if err != nil {
        log.Fatal(err)
        return
    }
    fmt.Println(solution)
}

バイパス方法reCAPTCHA v2-バイパス・エクステンション

Captcha Solving Extension supported in Chrome and Firefox browsers
弊社のブラウザ拡張機能を使用すると、画像認識または光学文字認識(OCR)を自動的に解決できます。

reCAPTCHA v2、v3、hCaptcha、FunCaptcha、Cloudflare Turnstile、AWS WAF、その他多くのタイプを含みます。

hCaptcha
reCAPTCHA
FunCaptcha
Cloudflare
Aws
More types

無料トライアル

15種類以上のキャプチャを認識
I'M NOT A ROBOT