-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathHuntOptionsExample.java
More file actions
31 lines (25 loc) · 1.05 KB
/
Copy pathHuntOptionsExample.java
File metadata and controls
31 lines (25 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
package examples;
import com.twocaptcha.TwoCaptcha;
import com.twocaptcha.captcha.Hunt;
public class HuntOptionsExample {
public static void main(String[] args) {
TwoCaptcha solver = new TwoCaptcha(args[0]);
solver.setHost("rucaptcha.com");
solver.setSoftId(0);
solver.setDefaultTimeout(120);
solver.setRecaptchaTimeout(600);
solver.setPollingInterval(10);
Hunt captcha = new Hunt();
captcha.setPageUrl("https://example.com/page-with-hunt");
captcha.setApiGetLib("https://example.com/api.js");
captcha.setData("meta.token.value");
captcha.setUserAgent("Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36");
captcha.setProxy("HTTPS", "login:password@IP_address:PORT");
try {
solver.solve(captcha);
System.out.println("Captcha solved: " + captcha.getCode());
} catch (Exception e) {
System.out.println("Error occurred: " + e.getMessage());
}
}
}