Resumable File Upload in Google API Ver 2
I am t开发者_运维技巧rying to upload large file on Google Docs. And i came across Resumable Upload.
But how can i implement it in Google API Ver 2 ?
Thanx
From what I read on the V2 and V3 docs for the API, V2 does not support resumable uploads. You would have to manually handle the upload based on the specs of the v3 docs. Meaning you would have to send the http request to the server, along with all the expected headers, and the content body if needed.
精彩评论