How can we pause or abort on going upload ?
Closed this issue · 4 comments
Siddharthflo commented
How can we pause or abort on going upload ?
yakirp commented
Hi,
You can cancel the request, please see this:
Please let me know if it works for you.
Thanks
avinashSminq commented
Same problem i facing with iOS app, I want to cancel an ongoing upload, how i can I handle it as i could not find any requestId for iOS.
shirlymanor commented
You can cancel the upload request. for example:
`let request = cloudinary.createUploader().signedUpload(url: URL(string: "http://res.cloudinary.com/demo/image/upload/sample")!, params:params);
request.cancel()
`
avinashSminq commented
Thanks for the update Shirly