'm stuck on one thing with appery.io. Love Appery BTW
I'm writing files from my hybrid app to my local device using the phonegap local file system calls. I choose the hybrid app approach because my app needs to be available offline. Saving the files in localStorage could use up too much space and slow the app down. I want to upload these files to my server later when an internet connection is available. I can open them with phonegap call, but POST is limited to same origin, and GET has a max of 8K. How can my app push these files to my server? What would you recommend?
Thanks