Questions tagged [resume-upload]

Tag for questions regarding resuming an interrupted upload.

33 questions
7
votes
1 answer

How to optimize upload routine using Delphi 2010?

My yet to be released Delphi 2010 application allows users to upload their files to my servers. Right now I'm using HTTPS POST to send the files, the (simplified) algorithm is basically: Split File into "slices" (256KB each) For each slice, POST it…
TheDude
  • 3,045
  • 4
  • 46
  • 95
5
votes
2 answers

Google Drive Python API resumable upload error 401 after 2 hours

First of all, I'm sorry if this is a too silly question... this is the first time I'm trying to use any of the technologies involved in this script (Python, the drive api, oauth 2.0, etc). I swear I've been searching and trying this for about a week…
4
votes
1 answer

How to limit upload size in Google Cloud Storage?

The client asks the backend to upload a file. The backend returns a session URI to the client (Resumable Uploads with the XML API). With this session URI the client has permission to upload a file to Google Cloud Storage. ¿How to configure the…
4
votes
2 answers

Resumable file upload in python

I am trying to upload the file in python and i want to upload the file in resumable mode i.e when the internet connection resume , the file upload resume from the previous stage. Is there any specific protocol that supports resumable file…
3
votes
1 answer

How is the resumable Youtube uploader working?

Any idea how the youtube video uploader works? The interesting feature here is that you can resume a broken upload-process (e.g. when you close the browser or your internet connection is lost meanwhile). It seems that they do not use Java, Flash…
spaudanjo
  • 764
  • 7
  • 13
3
votes
3 answers

YouTube C# API V3, how do you resume an interrupted upload?

I can't work out how to resume an interrupted upload in V3 of the C# YouTube API. My existing code uses V1 and works fine but I'm switching to V3. If I call UploadAsync() without changing anything, it starts from the beginning. Using Fiddler, I can…
3
votes
0 answers

Android Google Drive Resumable Upload fails very often

I have problem with uploading mp4 files to google drive. I am using resumable upload. Chunk size is set as multiplicity of minimal size(depending on file size to be uploaded in order to make progress bar working). Upload of small files is working…
2
votes
1 answer

nginx resumable upload with upload_module and multipart/form

I currently upload to a webservice on an nginx server using the upload module (http://www.grid.net.ru/nginx/upload.en.html) from a custom desktop application doing a simple multipart-form POST that sends a file in one part and a base64 encoded XML…
Daniel Gollás
  • 1,044
  • 2
  • 10
  • 18
2
votes
2 answers

How to use gcs-resumable-upload with signed url

I want to be able to do resumable uploads to Google Cloud Storage in a node.js client application using the gcs-resumable-upload package, in conjunction with signed urls (since the client app is invoked by unauthenticated users). My server generates…
2
votes
1 answer

How to specify a file type for resumable.js uploader?

I want resumable.js (file uploader) to only open a file picker for a particular file type, like mp4 or mp3. How to specify a file type for resumable.js uploader?
2
votes
0 answers

Get status of an upload to Drive REST API

I am creating a form in HTML5 and using Drive API rest to upload files, but the files are large, so I need to consult the current status of the upload. I'm using uploadType = resumable, but to make the status request as documentation: [Google…
2
votes
2 answers

Resumable uploading to Google Cloud Storage using PHP API

I can successfully upload small size files to Google Cloud Storage using Google PHP API CLIENT, But cant upload a 300MB file. Return with memory error. Here is my code. $storage = new Google_Service_Storage($client); $file_name =…
2
votes
1 answer

Google Drive SDK / c++ / Rest API resumable upload

I have seen discussion in internet about problems (or bugs in Google Drive SDK ) with resumable uploading to google Drive https://developers.google.com/drive/web/manage-uploads#resumable and the problem with access_token when it expires after one…
2
votes
1 answer

Resumable YouTube uploads with YouTube Data API v3 in Android

I'm uploading videos to my YouTube account from my Android application using YouTube Data API v3. Uploading process works perfectly. What I need is, if my upload got interrupted (eg. because of Internet connection) I need to start upload next time…
AnujAroshA
  • 4,623
  • 8
  • 56
  • 99
1
vote
1 answer

Issue in Resumable Upload on Google Drive

I am trying to upload large file on Google drive performing Resumable upload. Here is the code flow Step 1 : Creating file on Google Drive using Drive service and initiating the resumable upload session using put request String fileID =…
Mayuresh
  • 423
  • 1
  • 6
  • 24
1
2 3