With the impending demise of the Objective-C API for Dropbox I am looking to migrate a few simple calls.
I was able to migrate to the authenticate without issue, but am having trouble finding replacements for the following API. Was hoping someone might be able to help:
Calls out:
[restClient loadMetadata:@"/"];
[restClient uploadFile:fileName toPath:destDir withParentRev:rev fromPath:path];
[restClient loadFile:@"" into:localpath];
Callbacks:
-(void) restClient:(DBRestClient *)client loadedMetadata:(DBMetadata *)meta{}
-(void) restClient:(DBRestClient *)client uploadedFile:(NsString *)destpath from:(NSString *) srcPath metadata:(DBMetadata *) meta {}
-(void) restClient:(DBRestClient *)client loadedFile:(NsString *)localpath contenttype:(NSString *) type metadata:(DBMetadata *) meta {}