Replies: 1 comment
-
|
Thinks i found solution here #3349 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I GetObject use Chinese key but get error "The request signature we calculated does not match the signature you provided.".
I change DisableURIPathEscaping to true in source and get success.
aws source source code
new client with default DisableURIPathEscaping=true
aws-sdk-go-v2/service/s3/api_client.go
Line 631 in e211ac0
but in Signer.SignHTTP
aws-sdk-go-v2/aws/signer/v4/v4.go
Line 276 in e211ac0
DisableURIPathEscaping change to false
optFns has one member V4SignerAdapter.SignRequest
aws-sdk-go-v2/internal/auth/smithy/v4signer_adapter.go
Line 46 in e211ac0
after this line DisableURIPathEscaping change to false
How to change DisableURIPathEscaping in a new request ?
my code
Beta Was this translation helpful? Give feedback.
All reactions