# WebStore # REST API to store some data, like json, csv or txt. https://github.com/JMDirksen/WebStore # Examples # Store data example (you should choose your own secret, replace ""): These commands will put some headers in the file and add 3 lines, but limit the file size to 2 lines (excluding headers): curl -X PUT -d "key,value" "https://store.jefta.net/?maxlines=2&headerlines=1" curl -X PATCH -d "test,value1" "https://store.jefta.net/?maxlines=2&headerlines=1" curl -X PATCH -d "test,value2" "https://store.jefta.net/?maxlines=2&headerlines=1" curl -X PATCH -d "test,value3" "https://store.jefta.net/?maxlines=2&headerlines=1" The commands above output an url with which you can retrieve the stored data. Retrieve data example: curl "https://store.jefta.net/ad70995a5027e8ae7ad77e825ff5704df0e28432fc0098be100399140b71e8f2" The output would look like this: key,value test,value2 test,value3