You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix spelling and grammar mistakes in README + more (#89)
- Fixed multiple spelling mistakes and grammar issues
- Fixed missing/incorrect words
- Updated some sentence structures
All non-breaking changes.
Co-authored-by: Victor <kratzky@gmail.com>
| server |`2captcha.com`| API server. You can set it to `rucaptcha.com` if your account is registered there |
78
-
| softId | - | your software ID obtained after publishing in [2captcha sofware catalog]|
79
-
| callback | - | URL of your web-sever that receives the captcha recognition result. The URl should be first registered in [pingback settings] of your account |
80
-
| defaultTimeout | 120 | Polling timeout in seconds for all captcha types except reCAPTCHA. Defines how long the module tries to get the answer from `res.php` API endpoint |
81
-
| recaptchaTimeout | 600 | Polling timeout for reCAPTCHA in seconds. Defines how long the module tries to get the answer from `res.php` API endpoint |
82
-
| pollingInterval | 10 | Interval in seconds between requests to `res.php` API endpoint, setting values less than 5 seconds is not recommended |
80
+
| softId | - | your software ID obtained after publishing in [2captcha software catalog]|
81
+
| callback | - | URL of your web server that receives the captcha recognition result. The URL should be first registered in [pingback settings] of your account |
82
+
| defaultTimeout | 120 | Polling timeout in seconds for all captcha types except reCAPTCHA. Defines how long the module tries to get the answer from the `res.php` API endpoint |
83
+
| recaptchaTimeout | 600 | Polling timeout for reCAPTCHA in seconds. Defines how long the module tries to get the answer from the `res.php` API endpoint |
84
+
| pollingInterval | 10 | Interval in seconds between requests to the `res.php` API endpoint. Setting values less than 5 seconds is not recommended |
83
85
84
-
> **IMPORTANT:**once`callback` is defined for `TwoCaptcha` instance, all methods return only the captcha ID and DO NOT poll the API to get the result. The result will be sent to the callback URL.
86
+
> **IMPORTANT:**Once`callback` is defined for the`TwoCaptcha` instance, all methods return only the captcha ID and DO NOT poll the API to get the result. The result will be sent to the callback URL.
85
87
To get the answer manually use [get_result method](#send--get_result)
86
88
87
89
## Solve captcha
88
-
When you submit any image-based captcha use can provide additional options to help 2captcha workers to solve it properly.
90
+
When you submit any image-based CAPTCHA, you can provide additional options to help 2captcha workers solve it properly.
Grid method was originally called the Old reCAPTCHA V2 method. The method can be used to bypass any type of captcha where you can apply a grid on an image and click specific grid boxes. Returns numbers of boxes.
306
+
The grid method was originally called the Old reCAPTCHA V2 method. The method can be used to bypass any type of captcha where you can apply a grid on an image and click specific grid boxes. Returns numbers of boxes.
307
+
302
308
```python
303
309
result = solver.grid('path/to/captcha.jpg', param1=..., ...)
304
310
```
@@ -307,7 +313,8 @@ result = solver.grid('path/to/captcha.jpg', param1=..., ...)
0 commit comments