You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The data in JSON format (only if the error involves a data value)
{
"responseType": "error",
"message": "key '12345' does not exist in tag 'timers'",
"data": {
"timers": {
"123": "1610278082",
"1234": "1610278082"
}
}
}
โ๏ธ Config
Configuration options
Option
Description
secret (string)
Secret key for preventing others from modifying your data (leave blank for no secret)
private (boolean)
Whether or not the secret key is required for reading the data
json_path (string)
Path for storing the data file
Using secrets
In config.php, you can set a secret which will be a required parameter passed in the URL for insertion, updates, and deletion (eg. ...&secret=example).
To require the secret parameter to be passed even when reading data, set private to true.
About
Simple API for storing and retrieving labeled data (grouped key-value pairs)