Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Panel
panelIconIdatlassian-info
panelIcon:info:
bgColor#E3FCEF

Please read the Terms of Use for Materials on ZennoLab

Description

CapMonster2 has the ability to recognize ReCaptcha2 through via images.

How it works

Recognition of individual separate ReCaptcha2 images via CapMonster 2 is carried out similarly to recognition of ordinary captchas. Only the additional parameters differ.

...

It is necessary to specify True when recognizing ReCaptcha2 size 4x4.
And False otherwise in other cases.

Example:

IsNotDynamic=True

...

Note

Crop only applies to 3х3 ReCaptcha2. Such ReCaptcha2 contains 9 pictures, and these pictures can be sent one by one, just by setting CropOnePicture=False.

Sending one image at a time makes sense after the initial clicks - after that single images begin to load. Then it is not recommended to recognize the whole 3х3 again - it is better to create several requests with CropOnePicture=False (sending only really loaded tiles).

Note

The CropOnePicture parameter determines the format of the received response.

If CropOnePicture=True, CapMonster2 will return the indexes of the pictures to be clicked, separated by commas. The count starts from one. Example: 3,5,9.

If no objects are found, CapMonster2 will return sorry.

If CropOnePicture=False CapMonster2 will return either 0 or 1. In this case, 0 = Object found, and 1 = Object not found.

...