Twidget provides several miscellaneous commands to facilitate various tasks.
Description:
Checks whether the provided value is null or not.
Inputs:
Output:
true
if the value is null; otherwise, returns false
.Description:
Checks whether the provided value is not null.
Inputs:
Output:
true
if the value is not null; otherwise, returns false
.Description:
Returns the opposite boolean value of the input.
Inputs:
Output:
true
if the input is false
, and false
if the input is true
.Description:
Logs the provided text to the console or log file.
Inputs:
log_level: The log level (e.g., INFO, DEBUG, ERROR).
message: The message to be logged.
Output:
None.
Description:
Generates a random string of the specified length with optional inclusion of letters and numbers.
Inputs:
length: The length of the random string.
include_letters: Whether to include letters in the string.
include_numbers: Whether to include numbers in the string.
Output:
Description:
Generates a random number between the specified minimum and maximum values.
Inputs:
min: The minimum value for the random number.
max: The maximum value for the random number.
Output:
Description:
Sends a user a password reset email containing a reset key.
Inputs:
email: The email address of the user.
reset_key: The reset key to be included in the email.
Date
Twidget offers a variety of commands to manipulate date objects. Below are the available commands along with their respective descriptions, inputs, and outputs. Current Date. Description: Returns the current date and time. Output: - Type: DATE Add Time. Description: Returns the date plus a specified...
Error Handling
When building applications with Twidget, you may encounter situations where you need to handle errors gracefully to ensure your application runs smoothly. Twidget provides two powerful commands for error handling: `try-catch` and `throw-error`. This documentation will guide you on how to use these c...
Send Message
Send SMS Command. With Twidget, you can send SMS messages to phones using the `Send SMS` command. This functionality varies depending on the provider. Currently, we support Twilio as the SMS provider. To use Twilio for SMS integrations, you will need: - A Twilio account ID - Twilio Auth Token - A Tw...
Send External HTTP Request
Using Twidget, you can send external HTTP requests effortlessly. This functionality allows you to communicate with external servers or APIs. Below, you will find the necessary parameters and structure to set up an HTTP request. Parameters. - URL: The endpoint to which the request will be sent. - Met...
Managing Files
Twidget offers a set of commands to manipulate files in your file store. Below are the descriptions and usage of each command to help you understand how to utilize them effectively. Get File. Retrieve a file via file path. Inputs: - `path`: The file path to retrieve the file from. Outputs: - `filena...