Synchronize Cordova-generated files in IOS app with cloud servers

1

As per ,

I'm developing an application and part of it's functionality is to run a sort of CRUD on directories and files through an IOS application, which based on the answer of the previous question will be done through the CORD using requestFileSystem .

The application uses the IONIC framework, which in turn uses Cordova and AngularJS features.

The question now is whether to synchronize this "CRUD" into the cloud as a form of backup. For example with an API.

Then I would like to know:

Can I use a server like Google Drive, OneDrive, Dropbox, or others for this functionality?

If yes, how can I do it?

Please note that the files will first be created by the application through requestFileSystem and later stored on one of these servers or can only be created and manipulated directly on the server by disregarding the requestFileSystem >.

    
asked by anonymous 17.04.2016 / 06:59

1 answer

1

You can do this using the api of the same dropbox. I advise you to create an own api, because you will need to provide sensitive data to access the dropbox, and it is unsafe to do so by the client, since the data can be easily intercepted. Choose the language that most suits you to create the backup api and then use the dropbox, it has libraries ready for this in several languages, and the implementation is very simple.

See: link

    
17.04.2016 / 18:34