Froala テキスト エディターを使用して、画像を Amazon S3 アカウントに直接アップロードしたいと考えています。S3 認証署名が必要です。
ImageUploadtoS3 javascript:
$('.selector').editable({
imageUploadToS3: {
bucket: 'editor',
region: 's3',
keyStart: 'uploads/',
callback: function (url, key) {
// The URL and Key returned from Amazon.
console.log (url);
console.log (key);
},
params: {
acl: 'public-read', // ACL according to Amazon Documentation.
AWSAccessKeyId: 'ACCESS_KEY', // Access Key from Amazon.
policy: 'POLICY_STRING', // Policy string computed in the backend.
signature: '', // Signature computed in the backend.
}
}
});
その署名を生成するにはどうすればよいですか? Coldfusion 8 を使用しています。ご協力ありがとうございます。