Simple Automated Backups Tip
December 22, 2006 by JonathanOne of our users posed a question to us the other day asking how they could automate backups of their wiki. Using our REST API to handle authentication, we figured out that the following command-line snippet provides a handy way to download the latest export of your wiki!
wget --http-user=email@address.com \
--http-password=yourpassword \
--header="Accept: application/xml" \
-O sp-backup.zip \
http://account.stikipad.com/wikiname/export_markup
Just copy and paste, fill in the values for your e-mail address, password, StikiPad URL and you're set!
, 1mb).