URL returned by createPresignedPost is incorrect #4183
-
Hi I'm having the exact same issue as described in #2128 The format of the URL returned by I am not sure why the above issue was closed, does anyone know why the URL format is different? Expected Format: |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Hey @colesiegel thanks for opening this issue and yes I get similar results too for the same. var aws = require('aws-sdk');
var s3 = new aws.S3({ region: 'us-west-2' });
var params = {
Bucket: 'bucket',
Fields: {
key: 'key'
}
};
s3.createPresignedPost(params, function(err, data) {
if (err) {
console.error('Error', err);
} else {
console.log('Data', data);
}
}); I'll convert this to an issue |
Beta Was this translation helpful? Give feedback.
-
Hello! Reopening this discussion to make it searchable. |
Beta Was this translation helpful? Give feedback.
Hey @colesiegel thanks for opening this issue and yes I get similar results too for the same.
I'll convert this to an issue