-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathGridOptionsExample.java
35 lines (29 loc) · 1.05 KB
/
GridOptionsExample.java
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
32
33
34
35
package examples;
import com.twocaptcha.TwoCaptcha;
import java.io.File;
import com.twocaptcha.captcha.Grid;
public class GridOptionsExample {
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);
Grid captcha = new Grid();
captcha.setFile("src/main/resources/grid_2.jpg");
captcha.setRows(3);
captcha.setCols(3);
captcha.setPreviousId(0);
captcha.setCanSkip(false);
captcha.setLang("en");
captcha.setHintImg(new File("src/main/resources/grid_hint.jpg"));
captcha.setHintText("Select all images with an Orange");
try {
solver.solve(captcha);
System.out.println("Captcha solved: " + captcha.getCode());
} catch (Exception e) {
System.out.println("Error occurred: " + e.getMessage());
}
}
}