REST server to load & save JSON data. Data is saved in a JSON file at shutdown.
Useful with cron job which need to load & save data, but should avoid file system operations.
Get an authorization token to save data for an application.
POST http://localhost:6491/data/new
PUT http://localhost:6491/data/[authorization]/[key]
The body must be JSON data to save.
GET http://localhost:6491/data/[authorization]/[key]
DEL http://localhost:6491/data/[authorization]/[key]