1
In accordance with previous question,
I am developing an application and part of the functionality of it is to run a kind of CRUD in directories and files through an IOS application, which based on the answer of the previous question will be done through Cordova using requestFileSystem.
The application is based on the IONIC framework, which in turn uses Cordova and Angularjs resources.
The question now is about the possibility of synchronizing this cloud "CRUD" as a backup form. For example with an API.
So I’d like to know:
I can use a server like Google Drive, Onedrive, Dropbox, or others for this feature?
If so, how can I do it?
Please note that files will be first created by the application through the requestFileSystem and later stored on one of these servers or can only be created and manipulated directly on the server disregarding the requestFileSystem.
Are you using any server or your app works alone?
– LF Ziron
It works independently, without server.
– Rafael Kendrik
Well, I advise using a server, since to upload the files you will have to provide credentials. It would be unsafe to let the upload directly.
– LF Ziron