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

com.twocaptcha.captcha.GeeTestV4 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 GeeTestV4 extends Captcha {

    public GeeTestV4() {
        super();
        params.put("method", "geetest_v4");
    }

    public void setChallenge(String challenge) {
        params.put("challenge", challenge);
    }

    public void setUrl(String url) {
        params.put("pageurl", url);
    }

    public void setApiServer(String apiServer) {
        params.put("api_server", apiServer);
    }

    public void setCaptchaId(String captchaId) {
        params.put("captcha_id", captchaId);
    }    

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy