mirror of
https://github.com/fsouza/fake-gcs-server.git
synced 2026-04-26 22:25:50 +03:00
[GH-ISSUE #2048] signed URLs: Support insertObject with PUT requests #246
Labels
No labels
bug
compatibility-issue
docker
documentation
enhancement
help wanted
needs information
pull-request
question
stale
unfortunate
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/fake-gcs-server#246
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @jstriebel on GitHub (Oct 16, 2025).
Original GitHub issue: https://github.com/fsouza/fake-gcs-server/issues/2048
GCS supports PUT requests to insert objects (not using the resumable upload protocol). However, the fake-gcs-server currently always assumes a resumable upload in these cases (using
uploadFileContentinstead ofinsertObject), and returns a 404 when submitting a PUT without anupload_id.While POST is the canonical request for this according to the docs it would still be great to cover this edge-case in the fake-gcs-server IMO.
@jstriebel commented on GitHub (Oct 17, 2025):
I was using the JSON API instead of the XML API, it works as expected. Sorry for the noise!