i’m a newbie in dropbox development in IOS, i’m still learning about implementing dropbox in my app, the app is a text editor, i want to make it support for upload and downloading file in dropbox. In my app, i just can make some change in text and then upload it into dropbox, but i cant restore it into the last version. I have read Dropbox Rest API and read about https://api.dropbox.com/1/restore/<root>/<path>
but i dont know what to do, can somebody help me?
Thank you
Try this
/* Restores a file at path as it existed at the given rev and returns the metadata of the restored
file after restoration */
where path is the path of the DropBox file that has to restored and rev is the Revision to which it has to be restored
and its delegate methods are
and you can use these to get the revisions list of the particular file
/* Loads a list of up to 10 DBMetadata objects representing past revisions of the file at path */
/* Same as above but with a configurable limit to number of DBMetadata objects returned, up to 1000 */
and their Delegate Methods are
example
// Delegate Methods