Actions101
- š¤ Chatting Actions
- š„ļø Sessions Actions
- š Auth Actions
- š¼ļø Screenshot Actions
- š¢ Channels Actions
- š¢ Status Actions
- š¬ Chats Actions
- š¤ Contacts Actions
- š„ Groups Actions
- ā Presence Actions
- š·ļø Labels Actions
- š Observability Actions
Overview
This node operation 'Save Captcha' under the 'Auth' resource is designed to save a CAPTCHA code associated with a specific session. It is useful in scenarios where automated workflows need to handle CAPTCHA challenges by storing the CAPTCHA code for later verification or processing. For example, it can be used in authentication flows where CAPTCHA validation is required to prevent automated abuse.
Use Case Examples
- Saving a CAPTCHA code received from a user input during a login process to validate the session later.
- Storing CAPTCHA codes in workflows that automate form submissions requiring CAPTCHA verification.
Properties
| Name | Meaning |
|---|---|
| Session | The name of the session to which the CAPTCHA code belongs. This is required to identify the session context for the CAPTCHA. |
| Code | The CAPTCHA code to be saved for the specified session. This is a required string input representing the CAPTCHA value. |
| Request Options | Optional settings to customize the HTTP request behavior, including batching, SSL certificate validation, proxy settings, and timeout duration. |
Output
JSON
session- The session name associated with the saved CAPTCHA.code- The CAPTCHA code that was saved.status- The status or result of the save CAPTCHA operation, indicating success or failure.
Dependencies
- Requires an API key or authentication token to interact with the backend service handling CAPTCHA saving.
Troubleshooting
- Ensure the 'Session' property is correctly set and matches an active session; otherwise, the CAPTCHA code may not be saved properly.
- Verify that the 'Code' property is not empty, as an empty CAPTCHA code will likely cause the operation to fail.
- If SSL certificate validation errors occur, consider enabling the 'Ignore SSL Issues' option, but be aware of the security implications.
- Check proxy settings if network requests fail due to connectivity issues.
- Timeout errors may occur if the server is slow to respond; adjust the 'Timeout' setting accordingly.