Cutcaptcha迂回APIサービス
コードの例:
メソッド: createTask
APIエンドポイント:https://api.2captcha.com/createTask
CutCaptchaTaskProxyless
{ "clientKey": "YOUR_API_KEY", "task": { "type": "CutCaptchaTaskProxyless", "miseryKey": "a1488b66da00bf332a1488993a5443c79047e752", "apiKey": "SAb83IIB", "websiteURL": "https://example.cc/foo/bar.html" } }
CutCaptchaTask
{ "clientKey": "YOUR_API_KEY", "task": { "type": "CutCaptchaTask", "miseryKey": "a1488b66da00bf332a1488993a5443c79047e752", "apiKey": "SAb83IIB", "websiteURL": "https://example.cc/foo/bar.html", "proxyType": "http", "proxyAddress": "1.2.3.4", "proxyPort": "8080", "proxyLogin": "user23", "proxyPassword": "p4$w0rd" } }
応答の例
{ "errorId": 0, "status": "ready", "solution": { "token": "BazM23cpFUUyAAAdqPwNEDZx0REtH3ss" }, "cost": "0.00299", "ip": "1.2.3.4", "createTime": 1692863536, "endTime": 1692863556, "solveCount": 1 }
トークンの使用
返されたトークンを "input "の値として "id = cap_token "で使用し、その親フォームを送信する:
document.querySelector('input#cap_token').value='BazM23cpFUUyAAAdqPwNEDZx0REtH3ss' document.querySelector('form').submit()
コールバック関数が定義されていれば、トークンを引数としてその関数を呼び出すことができる:
capResponseCallback('BazM23cpFUUyAAAdqPwNEDZx0REtH3ss')