Rust crate for [Capsolver API]

The easiest way to quickly integrate [Capsolver] into your rust code to automate solving of any type of captcha.

Installation

To install, use one of them:

Using cargo bash cargo add capsolver Using Cargo.toml toml [dependencies] capsolver = "0.4.1"

Warning

This requires an asynchronous runtime e.g tokio

Configuration

Import the crate like this: rust use capsolver::{Capsolver, Token, Recognition, Config};

Note

Importing Token or Recognition is optional

Capsolver includes both of them

A Config can be created like: ```rust let config = Config::new(ClientKey, ApiUrl, Interval)

//Or simply create from env let config = Config::from_env()?; ```

Note

ClientKey is required and it's your client key from [Capsolver Dashboard]

ApiUrl is optional and its default value is [Capsolver API]

Interval is also optional and it is the interval in ms at which it'll check for task results. Default value 3000

A client can be created like this: ```rust //Use any of them as per your needs

let token = Token::new(config);

let recognition = Recognition::new(config);

let capsolver = Capsolver::new(config); ```

Note

Token is for the token APIs

Recognition is meant for recognition APIs only

Capsolver includes both of them

Example Usage

Checking your Capsolver balance: ```rust let res = capsolver.get_balance().await?;

println!("Balance: {},\nPackages: {:?}", res.balance, res.packages); Using `ImageToText` recognition API: rust let task = capsolver .recognition() .imagetotext("Base64 image string", None, None, None) .await?; let solution = task["solution"]["text"].as_str()?;

println!("Solution: {}", solution); Using `FunCapctha` token API: rust use capsolver::{OnlyToken};

let task = capsolver .token() .funcaptcha("websiteURL", "websitePublicKey", None, None, None) .await?; let taskid = task["taskId"].asstr()?; let soltion: OnlyToken = capsolver .gettaskresult(taskid) .await?;

println!("Solution: {}", solution.token); ```

Note Refer to [Capsolver Docs] for the options that are passed in the above functions

Note The return type of get_task_result() of Token task results can be better if you cast the following types individually according to the this

Better Types

Note This list only applies to token task results

Example: ```rust use capsolver::{OnlyToken, HCaptchaToken, AwsWafToken};

//This example assumes that you already have task id for each of them let funcaptchataskid = TaskId; let hcaptchataskid = TaskId; let awswaftask_id = TaskId;

let funcaptchasolution: OnlyToken = capsolver .gettaskresult(funcaptchataskid) .await?; let hcaptchasolution: HCaptchaToken = capsolver .gettaskresult(funcaptchataskid) .await?; let awswafsolution: AwsWafToken = capsolver .gettaskresult(funcaptchatask_id) .await?;

println!("Funcaptcha: {}", funcaptchasolution.token); println!("HCaptcha: {}", hcaptchasolution.captchakey); println!("AwsWaf: {}", awswaf_solution.cookie); ``` That's the best I can explain :D

Contribution

They're welcome :D

Licence

This project is licensed under the MIT License