Uploads a chunk of a file for an upload session.
The actual endpoint URL is returned by the Create upload session
and Get upload session endpoints.
The access token received from the authorization server in the OAuth 2.0 flow.
The RFC3230 message digest of the chunk uploaded.
Only SHA1 is supported. The SHA1 digest must be base64
encoded. The format of this header is as
sha=BASE64_ENCODED_DIGEST.
To get the value for the SHA digest, use the
openSSL command to encode the file part:
openssl sha1 -binary <FILE_PART_NAME> | base64.
The byte range of the chunk.
Must not overlap with the range of a part already uploaded this session. Each part’s size must be exactly equal in size to the part size specified in the upload session that you created. One exception is the last part of the file, as this can be smaller.
When providing the value for content-range, remember that:
The ID of the upload session.
The binary content of the file.
Chunk has been uploaded successfully.
A chunk of a file uploaded as part of an upload session, as returned by some endpoints.
The representation of an upload session chunk. The basic representation of an upload session chunk.