captcha_oxide

Build Crates.io Documentation

This is a rust library for solving captcha puzzles with the 2Captcha API

Usage

```rust use captchaoxide::{ solver::CaptchaSolver, captchaarguments::RecaptchaV3, response::RequestContent };

[tokio::main]

async fn main() { let solver = CaptchaSolver::new("YOUR TWOCAPTCHA API KEY");

let args = RecaptchaV3 { pageurl: String::from("https://someurl.com"), sitekey: String::from("SITE_KEY"), ..Default.default() };

match solver.solve(args).await { Ok(solution) => { // If there isn't a variant named after your captcha type, // it's because it only returns a token, so you should use // ths String variant match solution.solution { RequestContent::String(plaintextsolution) => { todo!("Use the solution"); }, _ => unreachable!() } }, Err(e) => { todo!("Handle your error"); } }; } ```