我正在使用java sdk为客户端生成预签名链接。我们有新的要求,允许链接保持活动至少30天。当我将到期时间设置得更长时,我得到以下错误:
由SigV4算法预先签名的请求最多有效 7天
我需要确定一种解决方法,因为客户端无法接受链接的更新(例如,如果我只是每周自动生成更新)。有没有解决的办法?我可以通过一组给定的只读信用吗?
答案 0 :(得分:2)
有关日期限制的说明,请参见详细answer。
为客户端生成只读凭据无法正常工作,因为客户端必须使用这些凭据创建自己的预签名URL(与您现在这样做没有什么不同 - 它仍会在最多时间到期) 7天)或使用AWS SDK直接下载文件而不预先签名的URL。
使用SigV4并且持续链接超过7天可以通过中间层(如REST端点)完成,其中URL不会更改并在请求时提供文件。
答案 1 :(得分:1)
不幸的是,使用S3预先签名的URL不能超过7天。
一种可能的解决方案是使用CloudFront签名的URL ,这些URL的有效期限没有限制。 S3存储桶仍将保持私有状态。
https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/PrivateContent.html
Java示例:
https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/CFPrivateDistJavaDevelopment.html
答案 2 :(得分:0)
import logging
import boto3
from botocore.exceptions import ClientError
from botocore.client import Config
# python > 3 should be installed
# pip install boto3
# s3v4
# (Default) Signature Version 4
# v4 algorithm starts with X-Amz-Algorithm
#
# s3
# (Deprecated) Signature Version 2, this only works in some regions new regions not supported
# if you have to generate signed url that has > 7 days expiry then use version 2 if your region supports it. below code illustration of this
s3_signature ={
'v4':'s3v4',
'v2':'s3'
}
def create_presigned_url(bucket_name, bucket_key, expiration=3600):
"""Generate a presigned URL to share an S3 object
:param bucket_name: string
:param bucket_key: string
:param expiration: Time in seconds for the presigned URL to remain valid
:return: Presigned URL as string. If error, returns None.
"""
# Generate a presigned URL for the S3 object
s3_client = boto3.client('s3',
aws_access_key_id='your_access_key_here',
aws_secret_access_key='your_secret_key_here',
config=Config(signature_version=s3_signature['v2']),
region_name='us-east-1'
)
try:
response = s3_client.generate_presigned_url('get_object',
Params={'Bucket': bucket_name,
'Key': bucket_key},
ExpiresIn=expiration)
except ClientError as e:
logging.error(e)
return None
# The response contains the presigned URL
return response
weeks = 8
seven_days_as_seconds = 604800
signed_url = create_presigned_url('your_bucket_here', 'your_key/file_name.xls', (seven_days_as_seconds*weeks))
print(signed_url)