Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How does Google Drive API support Content-Range for download requests? [closed]

How does Google Drive API support for get Content-Range requests? There are limits are App Engine get request sizes. Please support range requests so that large file sizes can be read.

like image 635
user1354399 Avatar asked Oct 08 '22 00:10

user1354399


1 Answers

You can provide the Range: header, for example:

Range: bytes=5-12

To download only the required bytes, in this case 5-12. Please see additional documentation about downloads.

like image 64
Ali Afshar Avatar answered Oct 13 '22 12:10

Ali Afshar