Cookie Storage
Overview
A non visible component to create, update and delete cookies in cookie storage.
Blocks
Methods
Store Value
Method to store value in the cookie storage by given key and value
loading block...
| Input Params | Type | Description |
|---|---|---|
| key | String | It's a unique name that helps you identify a specific piece of stored information. |
| value | String | The value is the actual content to be stored in the cookie storage. |
| domain | String | Defines under which domain the cookie must be stored. Default to hostname |
| expires | String | The date and time at which the cookie should expire. The string format should be in ISO format or UTC format |
Get Value
Returns: String
gets the value from the cookie storage for the given key
loading block...
| Input Params | Type | Description |
|---|---|---|
| key | String | The unique name that is used to store the value by using Store Value block. |
Delete Item
removes the given key from the cookie storage
loading block...
| Input Params | Type | Description |
|---|---|---|
| key | String | The unique name that is used to store the value by using Store Value block. |
Delete Item
removes all the data from the cookie storage
loading block...