BestCaptcha Activity
The BestCaptcha activity leverages the BestCaptcha automated online captcha solver API service to analyze and solve image captchas. It enables the automation of tasks requiring human verification by providing a programmatic solution for captcha resolution. To use this activity, users must have an active BestCaptcha account with sufficient credit.
| Field | Description | Requirement |
|---|---|---|
| Access Token | The API key associated with your BestCaptcha subscription. | Required |
| Template | The image file path or a Base64 encoded string of the captcha image to be solved. | Required |
| Case Sensitive | Specifies whether uppercase and lowercase letters in the captcha solution are treated as distinct (true) or equivalent (false). | Optional |
| Response Variable Name | The name of the variable where the solved captcha result will be stored. | Required |
Action Types & Examples
Solved Captcha Result
- Format: String
- Example Result:
captchaResult
Implementation Examples
Field Setup - Access Token: asds8dfcsf125dsdsfds5dasdasa3tyf - Template: C:\SampleRobusta\captcha.png - Case Sensitive: true - Response Variable Name: captchaResult
Execution Parameters - Access Token: {{yourBestCaptchaAPIKey}} - Template: {{captchaImagePathOrBase64String}} - Response Variable Name: solvedCaptchaText
Technical Notes
The BestCaptcha activity is designed exclusively for solving image captchas and does not support Google reCAPTCHA. For Google reCAPTCHA solutions, refer to the Captcha Solver (reCAPTCHA) activity.
To provide the captcha image for the
Templatefield, you can either specify a local file path or a Base64 encoded string of the image. To obtain the image, you may need to download it to the worker's local file system using activities such asTake Capture,Download File, orSave screen capture, depending on your process. TheBase64 Encoderactivity can then be used to convert the image file into a Base64 string if required.Detailed information regarding BestCaptcha account creation and payment options is available on the BestCaptcha website.