We are aware of the issue with the badge emails resending to everyone, we apologise for the inconvenience - learn more here.
Forum Discussion
abhishek9851
8 years agoExplorer | Level 3
Swifty Dropbox Batchupload
I am trying to write batchupload function in swifty, and it works. But I cant get access to async_job_id after I call uploadSessionFinishBatch.
client.files.uploadSessionFinishBatch(entries: finishArgArray).response{ response, error in if let result = response { print(result.description.) } }
I can only access description and the output is something like this
{ ".tag" = "async_job_id"; "async_job_id" = "dbjid:AAAY5UFZ3gPJJn5Com802JjQl48zzD4YYMIXgdhD1ZL0ZnkPApGP4P9pr-_HLAHsIfSu2Jeov9sCpoL_kGuxshpt"; }
I would like to fetch the async_job_id field, so that I can check the status of batch upload. What is the right way of doing it in swift?
In Java I could do something like this
String asyncJobId = dbxClient.files().uploadSessionFinishBatch(mFinishArgs).getAsyncJobIdValue();
You can access the results job ID like this:
switch result { case .none: print("Empty result") case .some(let unwrappedResult): switch unwrappedResult { case .asyncJobId(let asyncJobId): print(asyncJobId) case .complete: print("Job is complete") } }
Hope this helps!
- Greg-DBDropbox Staff
You can access the results job ID like this:
switch result { case .none: print("Empty result") case .some(let unwrappedResult): switch unwrappedResult { case .asyncJobId(let asyncJobId): print(asyncJobId) case .complete: print("Job is complete") } }
Hope this helps!
- abhishek9851Explorer | Level 3
Thanks Greg, that worked.
Since I hardly see any examples of batch upload, ill post my version here, i hope it helps.
https://gist.github.com/bazimogmbh/bba9ab300750a236d903709eeebf82b5
About Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.
5,875 PostsLatest Activity: 2 months 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!