Giter Club home page Giter Club logo

capsolver's Introduction

CapSolver.com Library for .NET Core

Nuget Nuget GitHub last commit GitHub Release Date GitHub Repo stars

CapSolver.com Library for .NET Core. Register now from here!

Installation

via Package Manager:

NuGet\Install-Package CapSolver -Version 1.2.1

This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.

via .NET CLI:

dotnet add package CapSolver --version 1.2.1

via adding PackageReference:

<PackageReference Include="CapSolver" Version="1.2.1" />

For projects that support PackageReference, copy this XML node into the project file to reference the package.

Supported Captcha Types

  • Image to text
  • ReCaptcha V2
  • ReCaptcha V3
  • HCaptcha
  • HCaptcha Classification
  • FunCaptcha
  • FunCaptcha Classification
  • GeeTest
  • Datadome Slider
  • Anti Cloud Flare
  • Mt Captcha
  • Binance Captcha
  • AWS WAF Classification
  • Anti Kasada
  • Anti Akamai BMP

Usage Examples


Creating a client

var client = new CapSolverClient("apikey");

Get balance

var client = new CapSolverClient("apikey");
await client.GetBalance();

Get Packages

var client = new CapSolverClient("apikey");
await client.GetPackages();

ReCaptchaV2 Task

var client = new CapSolverClient("apikey", false);
var task = new ReCaptchaV2Task("recaptcha-site", "recaptcha-site-key");
string id = await client.CreateTask(task);
var response = await client.JoinTaskResult<ReCaptchaV2Response>(id);

FunCaptcha Task

var client = new CapSolverClient("apikey", false);
var task = new FunCaptchaTask("funcaptcha-site", "funcaptcha-key", "funcaptcha-js-source");
string id = await client.CreateTask(task);
var response = await client.JoinTaskResult<FunCaptchaTaskResponse>(id);

For other examples and api documentation please visit wiki

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.