botlify-net / anticaptchacom-api

An interface to communicate simpler with anti-captcha.com.

Home Page:https://github.com/botlify-net

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Anti Captcha Com API

Latest release Build Status

This integration follow the documentation of the Anti Captcha Com API.

How to install ?

Add the dependency in your pom.xml:

<dependency>
    <groupId>net.botlify.anticaptchacom-api</groupId>
    <artifactId>anticaptchacom-api</artifactId>
    <version>LATEST</version>
</dependency>

Basic usage

To start using the API, you need to create an instance of the API with your API key. You can find your API key in your account page, then use the following code:

AntiCaptchaComConfig config = new AntiCaptchaComConfig("YOUR_API_KEY");
AntiCaptchaComAPI api = new AntiCaptchaComAPI(config);

// Solve a captcha
String response = solve(captchaKey, captchaUrl, captchaType);

About

An interface to communicate simpler with anti-captcha.com.

https://github.com/botlify-net

License:Apache License 2.0


Languages

Language:Kotlin 100.0%