如何将大文件上传到 Autodesk Forge "Error 416" 重叠范围

How to upload a large file to Autodesk Forge "Error 416" overlapping ranges

我在使用“buckets/:bucketKey/objects/:objectName/resumable”将大文件上传到我的存储桶时收到错误 416,但在执行时收到错误 416,原因是范围重叠。任何帮忙??

我认为这个错误就是它所说的意思,即两个块似乎覆盖了一些相同的字节。例如您发送一个请求

'Content-Range': 'bytes 0-4/10', 
'Content-Length': '5' 

和一个(所以它们都覆盖字节 4)

'Content-Range': 'bytes 4-8/10', 
'Content-Length': '5' 

而不是

'Content-Range': 'bytes 5-9/10', 
'Content-Length': '5'