验证码绕过服务
🚀 验证码绕过服务(依赖指纹浏览器)
Section titled “🚀 验证码绕过服务(依赖指纹浏览器)”在使用我们的指纹浏览器进行数据采集或自动化操作时,若目标网站触发验证码(如滑块、人机校验等),无需自行实现复杂的识别与模拟逻辑。
我们的平台集成了 验证码自动绕过能力,并通过 自定义 CDP 命令 对外开放,开发者只需在爬虫代码中调用指定命令,即可自动完成验证码处理。
✅ 无需打码平台
✅ 无需图像识别
✅ 与浏览器环境深度融合,稳定性更高
🧠 核心能力说明
Section titled “🧠 核心能力说明”- 通过 CDP(Chrome DevTools Protocol) 调用平台的验证码绕过功能
- 支持多种主流验证码类型(Cloudflare / Google / TikTok / Temu / Datadome 等)
- 阻塞式等待验证码完成,成功 / 失败状态清晰返回
- 验证码通过后即可继续执行后续业务逻辑
📌 通用调用方式
Section titled “📌 通用调用方式”统一使用以下 CDP 命令:
Captchas.automaticSolver| 参数名 | 类型 | 说明 |
|---|---|---|
| timeout | number | 验证码绕过最大等待时间(单位:秒) |
| solverType | string | 验证码类型(见下方对照表) |
🧩 各爬虫框架调用示例
Section titled “🧩 各爬虫框架调用示例”1️⃣ DrissionPage 示例(Python)
Section titled “1️⃣ DrissionPage 示例(Python)”result = page.run_cdp( 'Captchas.automaticSolver', # 使用我们预定义的验证码绕过命令 timeout=120, # 最大等待时间(秒) solverType='tiktok_slide_simple')
if result.get("status", False) == True: print("绕过成功")else: print("绕过失败")2️⃣ Playwright 示例(Python )
Section titled “2️⃣ Playwright 示例(Python )”cdp_session = await page.context.new_cdp_session(page)
result = await cdp_session.send( "Captchas.automaticSolver", { "timeout": 120, "solverType": "tiktok_slide_simple" })
if result.get("status", False): print("绕过成功")else: print("绕过失败")3️⃣ Puppeteer 示例(Node.js)
Section titled “3️⃣ Puppeteer 示例(Node.js)”const client = await page.target().createCDPSession()
const result = await client.send('Captchas.automaticSolver', { timeout: 120, solverType: 'tiktok_slide_simple',})
if (result.status) { console.log('绕过成功')} else { console.log('绕过失败')}4️⃣ Selenium 示例(Python)
Section titled “4️⃣ Selenium 示例(Python)”result = driver.execute_cdp_cmd( "Captchas.automaticSolver", { "timeout": 120, "solverType": "tiktok_slide_simple" })
if result.get("status", False) == True: print("绕过成功")else: print("绕过失败")✅ 验证码类型对照表(solverType)
Section titled “✅ 验证码类型对照表(solverType)”| 验证码类型 | solverType | 示例 |
|---|---|---|
| Cloudflare Turnstile | cloudflare | ![]() |
| Google reCAPTCHA v2 | google-v2 | ![]() |
| Google reCAPTCHA v3 | google-v3 | ![]() |
| DataDome 滑块验证码 | datadome | ![]() |
| OOCL Rotate Slide | oocl_slide | ![]() |
| Temu 全系列验证码 | temu_auto | ![]() |
| TikTok 滑块验证码 | tiktok_slide_simple | ![]() |






