Skip to content

Commit 39fa9de

Browse files
2 parents 60e82e4 + a7aaf05 commit 39fa9de

File tree

4 files changed

+605
-553
lines changed

4 files changed

+605
-553
lines changed

README.md

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,11 @@
77
<a href="https://github.com/2captcha/2captcha-java"><img src="https://github.com/user-attachments/assets/a3d923f6-4fec-4c07-ac50-e20da6370911" width="50" height="30"></a>
88
<a href="https://github.com/2captcha/2captcha-csharp"><img src="https://github.com/user-attachments/assets/f4d449de-780b-49ed-bb0a-b70c82ec4b32" width="38" height="30"></a>
99

10-
# C++ Module for 2Captcha API
10+
# C++ Module for 2Captcha API (captcha solver)
1111
The easiest way to quickly integrate [2Captcha] into your code to automate solving of any type of captcha.
1212
Examples of API requests for different captcha types are available on the [C++ captcha solver](https://github.com/2captcha/2captcha-cpp/tree/master/examples) examples directory.
1313

14-
15-
16-
- [C++ Module for 2Captcha API](#c-module-for-2captcha-api)
14+
- [C++ Module for 2Captcha API (captcha solver)](#c-module-for-2captcha-api-captcha-solver)
1715
- [Installation](#installation)
1816
- [Configuration](#configuration)
1917
- [Solve captcha](#solve-captcha)
@@ -30,6 +28,7 @@ Examples of API requests for different captcha types are available on the [C++ c
3028
- [Canvas](#canvas)
3129
- [ClickCaptcha](#clickcaptcha)
3230
- [Rotate](#rotate)
31+
- [Lemin](#lemin)
3332
- [Other methods](#other-methods)
3433
- [send / getResult](#send--get_result)
3534
- [balance](#balance)
@@ -270,6 +269,15 @@ captcha.set_lang ("en");
270269
captcha.set_hint_img_file ("path/to/hint.jpg");
271270
captcha.set_hint_text ("Put the images in the correct way up");
272271
```
272+
### Lemin
273+
Use this method to solve Lemin and obtain a token to bypass the protection.
274+
275+
```c++
276+
api2captcha::lemin lemin;
277+
lemin.setCaptchaid ("CROPPED_5a29582_ca114c2f3314482c84cd32fc7d2feb63");
278+
lemin.setUrl ("https://2captcha.com/demo/lemin");
279+
lemin.setApiServer("api.leminnow.com");
280+
```
273281

274282
## Other methods
275283

0 commit comments

Comments
 (0)