Is there any way that I can generate Pre-Signed URL's without any expiry date ?
I'm developing a Email app where my attachments will be saved in S3.
Also please let me know what is the best way to download attachments via JavaScript SDK.
I'm using below code
var params = {Bucket: 'bucket', Key: 'key', Expires: 60};
var url = s3.getSignedUrl('getObject', params);
console.log('The URL is', url);
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…