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???
Asked
Active
Viewed 242 times
1 Answers
2
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:
- You upload a 100mb video
- You verify the bytes uploaded, but Vimeo claims you have only uploaded 50mb
- You upload bytes 51 through 100
- You verify the bytes upload, but Vimeo claims you have only uploaded a total of 90mb including step 1.
- You upload bytes 91 through 100
- You verify the bytes uploaded, and Vimeo claims it has received 100mb
- You perform the "delete" call to wrap up the upload flow.
The verification/resume loop can happen any number of times.

Dashron
- 3,968
- 2
- 14
- 21
-
1Thank you Dashron ,I have followed your steps ,but in that case DELETE call gives me null response (No location parameter in Header). Please guide me I can't figure out why is it happening so?? – Yyy Oct 03 '16 at 10:06
-
1"This video will be available shortly" this is the message displayed when we try to view our uploaded video. – Yyy Oct 03 '16 at 11:01