We're making changes to the Community, so you may have received some notifications - thanks for your patience and welcome back. Learn more here.
Forum Discussion
purringpigeon
3 years agoExplorer | Level 4
Getting an upload error - not sure why
I recently ran into the issue of the long lived tokens no longer working, so I needed to upgrade to the latest API and change the access. I am now running into an exception uploading content.
My old upload code was this (and nested other uploads if the first was successful), but this API was no longer present.
DBFILESWriteMode* mode = [[DBFILESWriteMode alloc]initWithOverwrite];
[[self.restClient.filesRoutes uploadData:@"/ServiceReport.sqlite"
mode:mode
autorename: NULL
clientModified:NULL
mute:NULL
inputData:sqllite]setResponseBlock:^(DBFILESFileMetadata * _Nullable result , DBFILESUploadError * _Nullable routeError, DBRequestError * _Nullable error) {
//repeat for each file to upload......
}];
So I replaced with what seemed like the correct replacement:
[[self.restClient.filesRoutes uploadData: @"/ServiceReport.sqlite"inputData:sqllite] setResponseBlock:^(DBFILESFileMetadata * _Nullable result , DBFILESUploadError * _Nullable routeError, DBRequestError * _Nullable error) {
//repeat for each file to upload
}];
But when I try this, I am getting the following error...
I am not really sure what to try next... it seems my download to restore is working just fine, it's the upload that is failing.
Thank you for any pointers.
purringpigeon wrote:
... But my old call was not compiling.That's not something API related! Check what's wrong in your syntax, compiler options, etc.
- ЗдравкоLegendary | Level 20
Hi purringpigeon,
Where you have set the mode to overwrite (as in first version)? 🤔 If missing, the behaviour is normal when file with the same name already exists. 😉
Hope this gives direction.
- purringpigeonExplorer | Level 4How do I set the mode? I don’t see the option on the new API.
- ЗдравкоLegendary | Level 20
purringpigeon wrote:
How do I set the mode? I don’t see the option on the new API.
purringpigeon wrote:...
DBFILESWriteMode* mode = [[DBFILESWriteMode alloc]initWithOverwrite]; [[self.restClient.filesRoutes uploadData:@"/ServiceReport.sqlite" mode:mode ...
...
Something that's missing in you second code snippet! This part is nothing to do with the change of access token way of work. 😉
- purringpigeonExplorer | Level 4When I had it with mode it complained the API was not correct. I’ll try again. I’m not sure why it failed. But my old call was not compiling.
About Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.
5,875 PostsLatest Activity: 21 days agoIf you need more help you can view your support options (expected response time for an email or ticket is 24 hours), or contact us on X or Facebook.
For more info on available support options for your Dropbox plan, see this article.
If you found the answer to your question in this Community thread, please 'like' the post to say thanks and to let us know it was useful!