I have very simple code to create an S3 url. The URL I received from the SDK has only the base path for S3. It does not contain anything else. Why is this happening?
var AWS = require('aws-sdk'); var s3 = new AWS.S3(); console.log(s3.getSignedUrl('getObject', { Bucket: 'test', Key: 'test' }));
Node.js v0.12.0, AWS SDK 2.1.15 or 2.1.17, Windows 7 64-bit,
source share