# 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://webstore.jefta.net/?maxlines=2&headerlines=1" curl -X PATCH -d "test,value1" "https://webstore.jefta.net/?maxlines=2&headerlines=1" curl -X PATCH -d "test,value2" "https://webstore.jefta.net/?maxlines=2&headerlines=1" curl -X PATCH -d "test,value3" "https://webstore.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://webstore.jefta.net/e1efbe6143bea53aa7084398c658d6ea21d072938902594b8fdd5e7c8d82d8e6" The output would look like this: key,value test,value2 test,value3