All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.twocaptcha.captcha.Text Maven / Gradle / Ivy

Go to download

Java library for easy integration with the API of 2captcha captcha solving service to bypass recaptcha, hcaptcha, funcaptcha, geetest and solve any other captchas.

The newest version!
package com.twocaptcha.captcha;

public class Text extends Captcha {

    public Text() {
        super();
        params.put("method", "post");
    }

    public Text(String text) {
        this();
        setText(text);
    }

    public void setText(String text) {
        params.put("textcaptcha", text);
    }

    public void setLang(String lang) {
        params.put("lang", lang);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy