2回答
- 新しい順
- 投票が多い順
- コメントが多い順
3
Hello.
What code are you using to issue Presigned URLs?
I answered a similar problem a while ago, but at that time I was able to resolve it by specifying "endpoint_url" when creating the S3 client.
https://repost.aws/questions/QUxFKBL7VwSomPT1thHt6qLg/pre-signed-url-timezone-put#ANuoLZPqTsRv-qu4eWLc67-A
s3_client = boto3.client('s3',region_name="eu-central-1",endpoint_url="https://s3.eu-central-1.amazonaws.com")
1
It may be that you fell into a specific case of limits within the presigned URLs of S3 as specified in https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-presigned-url.html#PresignedUrlUploadObject-LimitCapabilities
Can we look at the code you use so we can spot anything in there?
Thank you for help. I saw this resource early and have already checked the solutions that suggested there. Nothing helped me.

Thank you very much! It helped me and for two days now everything has been working fine. I use "eu-central-1" and "eu-north-1" regions. In my opinion, the “endpoint_url” parameter should be mentioned in the official documentation on the presigned url page (https://boto3.amazonaws.com/v1/documentation/api/latest/guide/s3-presigned-urls.html) :)