3
Nodejs AWS SDK S3署名済みURLを生成
NodeJS AWS SDKを使用して、署名付きS3 URLを生成しています。ドキュメントは、署名付きURLを生成する例を示しています。 これが私の正確なコードです(機密情報は省略されています): const AWS = require('aws-sdk') const s3 = new AWS.S3() AWS.config.update({accessKeyId: 'id-omitted', secretAccessKey: 'key-omitted'}) // Tried with and without this. Since s3 is not region-specific, I don't // think it should be necessary. // AWS.config.update({region: 'us-west-2'}) const myBucket = 'bucket-name' const myKey = 'file-name.pdf' const signedUrlExpireSeconds …