0
aws s3を使ってファイルを保存します。バケット名と下のような認証情報を使ってngUploadを使っています。アップロードしたファイルをamazonにリストする方法s3
uploader.upload({
url: 'https://<myBucket>.s3.amazonaws.com/', //S3 upload url including bucket name
method: 'POST',
fields: {
key: refId.toString() + "_" + file.name, // the key to store the file on S3, could be file name or customized
AWSAccessKeyId: 'mySecretKey',
acl: 'private',
policy: 'myPolicy',
signature: 'mySignature',
"Content-Type": file.type != '' ? file.type : 'application/octet-stream',
filename: file.name
},
file: file
}
私は、ファイルが、どのように私はこのスレッドで提供される解決策は、あなたに有用であろうと思いますangularjs一部
get endpointからの応答形式は何ですか? –
Authorization、Date、x-amz-dateヘッダーを使用して郵便番号を要求するときSignatureDoesNotMatchを取得しますが、同じパラメータを使用してファイルをアップロードできます – cimey