Please let me explain what , what I do, and How , I do.
What am I doing?
I am trying to upload a file to Onedrive using my REST API Source: single disk api documentation
I use OneDrive snippets for this, as the file size can be as huge as 5 GB or less than 1 KB (user dependent)
I am currently doing this using the POST-MAN Chrome extension to call APIs
How am i doing this?
- Activated Access Token
- Session created and retrieved download URL
- Download a file using a PUT request as follows
The selected file I want to download (File size: 729676295 bytes) 
Added headers and sent a request and sent a request
Here is the result 
he says the maximum fragment size is 67108864 bytes, so I changed the value
content length: 67108864 and content range: bytes 0-67108863 / 729676295
but then I get this error message: The declared fragment length does not match the provided number of bytes 
Please help me figure out what I should convey in the area of ββcontent and content.
Thank you very much for your attention.
source share