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
Trying to retrieve a resource from s3 e.g. /my/folder/työnantaja.pdf fails, because the ö character in canonical string generation is not urlencoded properly.
Passing it through encodeURI (i.e. canonical.push(encodeURI(requestResource));) makes the above request work.
Don't ask why paths like this are stored in our s3 bucket 😬
The text was updated successfully, but these errors were encountered:
Trying to retrieve a resource from s3 e.g.
/my/folder/työnantaja.pdf
fails, because theö
character in canonical string generation is not urlencoded properly.Passing it through
encodeURI
(i.e.canonical.push(encodeURI(requestResource));
) makes the above request work.Don't ask why paths like this are stored in our s3 bucket 😬
The text was updated successfully, but these errors were encountered: