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
* @param {string} params.datas Value of `data-s` parameter you found on page. Curenttly applicable for Google Search and other Google services.
370
370
* @param {string} params.pingback URL for pingback (callback) response that will be sent when captcha is solved. URL should be registered on the server. [More info here](https://2captcha.com/2captcha-api#pingback).
371
371
* @param {string} params.action Value of `action` parameter you found on page.
* @param {number} params.min_score The score needed for resolution reCAPTCHA V3. Currently it's almost impossible to get token with score higher than `0.3`
374
374
* @param {string} params.version `v2` — defines that you're sending a reCAPTCHA V2. `v3` — defines that you're sending a reCAPTCHA V3.
375
375
* @param {string} params.domain Domain used to load the captcha: `google.com` or `recaptcha.net`
@@ -666,7 +666,7 @@ export class Solver {
666
666
* lang,
667
667
* textinstructions,
668
668
* pingback }} params Extra properties to pass to 2captcha.
669
-
* @param {number} params.body Base64 image data for the captcha.
669
+
* @param {string} params.body Base64 image data for the captcha.
670
670
* @param {number} params.phrase Captcha contains two or more words? `1` - Yes. `0` - No.
671
671
* @param {number} params.regsense Captcha is case sensitive? `1` - Yes. `0` - No.
672
672
* @param {number} params.numeric `0` - not specified. `1` - captcha contains only numbers. `2` - captcha contains only letters. `3` - captcha contains only numbers OR only letters. `4` - captcha MUST contain both numbers AND letters.
@@ -1304,9 +1304,9 @@ public async friendlyCaptcha(params: friendlyCaptcha): Promise<CaptchaAnswer> {
1304
1304
* ### Bounding Box Method
1305
1305
*
1306
1306
* @param {{ image, textinstructions, imginstructions }} params Parameters Bounding Box Method as an object.
1307
-
* @param {image} params.image Image containing data for markup. The image must be encoded in `Base64` format.
1308
-
* @param {textinstructions} params.textinstructions Text will be shown to worker to help him to select object on the image correctly. For example: "*Select cars in the image*". **Optional parameter**, if the instruction already exists in the form of the `imginstructions`.
1309
-
* @param {imginstructions} params.imginstructions Image with instruction for worker to help him to select object on the image correctly. The image must be encoded in `Base64` format. **Optional parameter**, if the instruction already exists in the form of the `textinstructions`.
1307
+
* @param {string} params.image Image containing data for markup. The image must be encoded in `Base64` format.
1308
+
* @param {string} params.textinstructions Text will be shown to worker to help him to select object on the image correctly. For example: "*Select cars in the image*". **Optional parameter**, if the instruction already exists in the form of the `imginstructions`.
1309
+
* @param {string} params.imginstructions Image with instruction for worker to help him to select object on the image correctly. The image must be encoded in `Base64` format. **Optional parameter**, if the instruction already exists in the form of the `textinstructions`.
0 commit comments