Crates.io | captcha_oxide |
lib.rs | captcha_oxide |
version | 6.0.0 |
source | src |
created_at | 2023-07-18 20:33:17.506936 |
updated_at | 2024-05-02 20:17:39.221603 |
description | Library for interacting with the 2Captcha API to solve captcha puzzles |
homepage | https://github.com/escritorio-gustavo/captcha_oxide |
repository | https://github.com/escritorio-gustavo/captcha_oxide |
max_upload_size | |
id | 919739 |
size | 119,037 |
A high level async library that allows you to use the 2captcha API to solve various types of captcha puzzles
use captcha_oxide::{
CaptchaSolver,
captcha::types::recaptcha::v3::RecaptchaV3,
Captcha,
};
use url::Url;
async fn example() -> captcha_oxide::Result<()> {
let solver = CaptchaSolver::new("YOUR TWOCAPTCHA API KEY");
let args = RecaptchaV3::builder()
.website_url(Url::parse("https://someurl.com")?)
.website_key("SITE_KEY")
.min_score(0.3)
.build();
let solution = solver
.solve(args)
.await?
.solution
.g_recaptcha_response;
assert!(!solution.is_empty());
Ok(())
}
Unless you need TencentCaptcha
or AtbCaptcha
, there is no
need to migrate if you have an existing project using version
5.2.0
.
Version 6.0.0
is a restructure of the API and the macros
aimed at making them more convinient to maintain, especially
as the previous macro system was cumbersome and had very poor
syntax. If you are creating a new project, we do recommend using
version 6.
The Minimum Supported Rust Version is 1.70.0
License: MIT OR Apache-2.0