CAPSOLVER

Cloudflare Turnstile Solucionador de captcha

cloudflare

¿Qué es Cloudflare

Cloudflare emplea varias técnicas para detectar y mitigar el tráfico no deseado.  Entre ellos se encuentran el Cloudflare Challenge, que a menudo implica desafíos de JavaScript o pruebas CAPTCHA, y Turnstile, un CAPTCHA más fácil de usar que minimiza la interacción del usuario.

Cloudflare Turnstile Demo

Cloudflare Challenge Demo

www.demo.com
Verifying you are human by completing the action below.

www.demo.com needs to review the security of your connection before proceeding.

Cloudflare Turnstile La mejor solución de resolución: CapSolver

CapSolver es el solucionador de Cloudflare Turnstile más económico y rápido para evadir el Cloudflare Turnstile.

CapSolver utiliza algoritmos de resolución de Captcha impulsados por IA, lo que resulta en una velocidad de resolución más rápida y costos significativamente reducidos, brindando una excelente experiencia para los desarrolladores.

Altamente confiable

Tenemos la velocidad de actualización más rápida entre proveedores similares.

Sin riesgos

Solo pagas por los captchas resueltos. Una revisión de cooperación estricta prohibirá cualquier actividad ilegal.

AI impulsado

Utilizamos IA para la resolución completamente automatizada de captchas.

Compatibilidad

CapSolver funciona con las API de servicios populares de reconocimiento manual de captchas.

Soluciones diversas

CapSolver ofrece servicio de API y extensión en Chrome.

Confiable

Más de 1000 plataformas han integrado nuestra API.

El método para resolver problemas de captcha con CapSolver es el siguiente:

Después de usar el servicio de CapSolver, cuando los usuarios encuentran problemas de captcha, envían solicitudes a CapSolver. Al recibir la solicitud para el problema de captcha correspondiente, CapSolver resuelve eficientemente y rápidamente el problema de captcha para los usuarios.

</> API del solucionador de Cloudflare Turnstile:

(Más bibliotecas de terceros en github)
SolucionesPrecios
Cloudflare Turnstile

AntiTurnstileTaskProxyLess

$1.2/1000 requests

Cómo evadir Cloudflare Turnstile-Guía de API

El servicio de resolución automática de captchas de CapSolver puede pasar fácilmente Cloudflare Turnstile. CapSolver ofrece dos servicios de resolución de captchas que te ayudan a resolver Cloudflare Turnstile.

Uno de los servicios es utilizar CapSolver's API El otro servicio es descargar la extensión en Chrome extensión en Chrome

Registrándose en CapSolver y obteniendo nuestros servicios de captcha

Step 1 : Creating a Task

Create the task with the createTask.

In the process of using turnstile, we must input websiteURL and websiteKey, other parameters are optional.

Task Object Structure

Properties Type Required Description
type String Required AntiTurnstileTaskProxyLess
websiteURL String Required The address of the target page.
websiteKey String Required Turnstile website key.
metadata Map<String,String> Optional Turnstile extra data . Turnstile Documentation
metadata.action String Optional The value of the data-action attribute of the Turnstile element if it exists.
metadata.cdata String Optional The value of the data-cdata attribute of the Turnstile element if it exists.

Example Request

txt Copy
POST https://api.capsolver.com/createTask
Host: api.capsolver.com
Content-Type: application/json
json lines Copy
{
  "clientKey": "YOUR_API_KEY",
  "task": {
    "type": "AntiTurnstileTaskProxyLess",
    "websiteURL": "https://www.yourwebsite.com",
    "websiteKey": "0x4XXXXXXXXXXXXXXXXX",
    "metadata": {
      "action": "login", //optional
      "cdata": "0000-1111-2222-3333-example-cdata" //optional
    }
  }
}

Example Response

json lines Copy
{
  "errorId": 0,
  "status": "idle",
  "taskId": "61138bb6-19fb-11ec-a9c8-0242ac110006" // record taskId
}

Step 2 : Getting Results

Use the getTaskResult method to get the recognition results

Depending on the system load, you will get the results within the interval of 1s to 20s

Example Request

txt Copy
POST https://api.capsolver.com/getTaskResult
Host: api.capsolver.com
Content-Type: application/json
json lines Copy
{
  "clientKey": "YOUR_API_KEY",
  "taskId": "61138bb6-19fb-11ec-a9c8-0242ac110006"
}

Example Response

json lines Copy
{
  "errorId": 0,
  "taskId": "61138bb6-19fb-11ec-a9c8-0242ac110006",
  "status": "ready",
  "errorCode": null,
  "errorDescription": null,
  "solution": {
    "token": "0.mF74FV8wEufAWOdvOak_xFaVy3lqIDel7SwNhw3GgpICSWwTjYfrQB8mRT1dAJJBEoP7N1sESdp6WH9cTS1T0catWLecG3ayNcjwxVtr3hWfS-dmcBGRTx4xYwI64sAVboYGpIyuDBeMIRC3W8dK35v1nDism9xa595Da5VlXKM7hk7pIXg69lodfiftasIkyD_KUGkxBwxvrmz7dBo10-Y5zvro9hD4QKRjOx7DYj9sumnkyYCDx0m4ImDIIkNswfVTWI2V22wlnpHdvMgdtKYgOIIAU28y9gtdrdDkpkH0GHcDyd15sxQGd9VjwhGZA_mpusUKMsEoGgst2rJ3zA.UWfZupqLlGvlATkPo3wdaw.38d55cd0163610d8ce8c42fcff7b62d8981495cc1afacbb2f14e5a23682a4e13",
    "type": "turnstile",
    "userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36"
  }
}

Resolviendo Cloudflare Turnstile utilizando CapSolver SDK

Captcha populares admitidos

Utiliza fácilmente CapSolver para resolver CAPTCHAs

Nos aseguramos de que integrar nuestros productos en tu infraestructura de sea lo más sencillo posible. Con soporte para múltiples lenguajes y ejemplos de código listos para usar, te garantizamos un inicio rápido y fácil para tu proyecto de web.

Documentación para desarrolladores

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

import capsolver

# capsolver.api_key = "..."
solution = capsolver.solve({
  "type": "AntiTurnstileTaskProxyLess",
  "websiteURL": "https://www.yourwebsite.com",
  "websiteKey": "0x4XXXXXXXXXXXXXXXXX",
  "metadata": {
     "action": "login"  # optional
  }
})
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

  capSolver := capsolver_go.CapSolver{ApiKey: "..."}
  solution, err := capSolver.Solve(map[string]any{
    "type":       "AntiTurnstileTaskProxyLess",
    "websiteURL": "https://www.yourwebsite.com",
    "websiteKey": "0x4XXXXXXXXXXXXXXXXX",
    "metadata": map[string]string{
      "action": "login"  // optional
    },
  })
  if err != nil {
    log.Fatal(err)
    return
  }
  fmt.Println(solution)
}

Prueba gratuita

Reconocer más de 15 tipos de captcha