Hello Bohdan
Did you try these steps?
The AzureStorageUriRequestFailed
error occurs when the file size exceeds the maximum allowed size for a single upload request to Microsoft Graph Beta API. According to the Microsoft Graph documentation, the maximum allowed size for a single upload request is 23 GB.
When you try to upload a file larger than 23 GB, the API returns an AzureStorageUriRequestFailed
error, which is a generic error that indicates that the request failed due to a storage issue.
To fix this issue, you have a few options:
- Split the file into smaller chunks: You can split your large file into smaller chunks, each less than 23 GB, and then upload each chunk separately using the Microsoft Graph API. After uploading each chunk, you'll need to stitch them together on the Azure storage side.
- Use Azure Blob Storage's resumable upload feature: You can use Azure Blob Storage's resumable upload feature, which allows you to upload large files in multiple segments. This way, you can upload your file in smaller chunks and resume the upload from where it was interrupted.
- Use a third-party library or tool: There are third-party libraries and tools available that provide features for handling large file uploads, such as splitting files into smaller chunks or using resumable uploads.