79654000

Date: 2025-06-05 07:48:41
Score: 1.5
Natty:
Report link

You can follow the same pattern that is used in large file uploads in AWS S3. Link for AWS S3 - https://docs.aws.amazon.com/AmazonS3/latest/userguide/mpuoverview.html#apisupportformpu

  1. Initiate • POST /upload/initiate • Response: { "uploadId": "xyz", "key": "uploads/filename" }

  2. Upload Parts • GET /upload/url?uploadId=xyz&key=...&partNumber=1 • PUT to presigned URL with part data • Save returned ETag from S3 response

  3. Complete • POST /upload/complete with {uploadId, key, parts: [{PartNumber, ETag}]}

Reasons:
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Sakalya