Reputation: 2335
I have to upload video to vimeo,I am using resumable PUT uploads in which I have uploaded video, then get a 200 response code.Thereafter I verify the upload but the range that api is returning is not the size of my file size. so how many attempts can we make to achieve a complete 100% upload of our video file.. So that we can make a delete call???
Upvotes: 2
Views: 259
Reputation: 3998
There is no limit to the amount of attempts you can make, but your next request should resume where the first one left off until the entire file is uploaded.
eg:
The verification/resume loop can happen any number of times.
Upvotes: 2