cloudinary/cloudinary_android

How can we pause or abort on going upload ?

Closed this issue · 4 comments

How can we pause or abort on going upload ?

Hi,
You can cancel the request, please see this:

Please let me know if it works for you.
Thanks

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.

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()
`

Thanks for the update Shirly