http之Range
介绍
http进行文件访问时,可通过header Range指定请求的位置,实现分段下载,断点续传的功能
使用
正常访问文件
curl --location --request GET 'https://pics3.baidu.com/feed/574e9258d109b3deaee28959b7a2cd8b800a4c4d.png?token=686e4f2c779c94c6c4af388ff06104d2'
访问部分字节
curl --location --request GET 'https://pics3.baidu.com/feed/574e9258d109b3deaee28959b7a2cd8b800a4c4d.png?token=686e4f2c779c94c6c4af388ff06104d2' \
--header 'Range: bytes=0-15000'