You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using MinIO in conjunction with the .NET SDK to generate presigned URLs for object downloads. I have a specific requirement to include a custom header in the presigned URL with case sensitivity preserved. However, when I attempt to add headers to the PresignedGetObjectArgs, it appears that the headers are transformed to lowercase in the resulting URL.
Here's a simplified version of the code I'm using:
This issue is related to this discussion.
I'm using MinIO in conjunction with the .NET SDK to generate presigned URLs for object downloads. I have a specific requirement to include a custom header in the presigned URL with case sensitivity preserved. However, when I attempt to add headers to the PresignedGetObjectArgs, it appears that the headers are transformed to lowercase in the resulting URL.
Here's a simplified version of the code I'm using:
The problem is that the resulting URL ends up with lowercase headers, like this:
http://127.0.0.1:9000/testbucket/1.png?[..someheaders]&versionid=somevalue
What I want is for the custom header "versionId" to retain its original case sensitivity in the presigned URL, like this:
http://127.0.0.1:9000/testbucket/1.png?[..someheaders]&versionId=somevalue
Is there a way to achieve this case-sensitive preservation for custom headers in MinIO's .NET SDK when generating presigned URLs?
The text was updated successfully, but these errors were encountered: