使用Ionic 2通过预签名的URL上传到s3时,SignatureDoesNotMatch错误

ble*_*as1 0 put amazon-s3 ionic-framework cordova-plugins ionic2

我正在尝试将视频上传到s3,并有一个预先签名的PUT网址。以下是执行此操作的代码。

import {Component} from '@angular/core';
import {NavController} from 'ionic-angular';
import {MediaCapture} from 'ionic-native';
import {Http} from '@angular/http';
import { Transfer } from 'ionic-native';

@Component({
  selector: 'page-home',
  templateUrl: 'home.html'
})

export class HomePage {

    public base64Image: string;

    constructor(private navController: NavController, public http: Http) {
        this.base64Image = "https://placehold.it/150x150";
    }

    public takeVideo() {
        MediaCapture.captureVideo({limit:2}).then(function(videoData){
            var link = "https://mysamplebucket.s3.amazonaws.com/non-tp/esx.mov?AWSAccessKeyId=TEMP_KEYY&Expires=1482290587&Signature=JUIHHI%2FcnLkqSVg%3D&x-amz-security-token=FQoDYXDGRfTXk6hma0Rxew6yraAX%2FlYGaQmYLwkvsuuB3%2F%2FtPvGDVs3dIQG0Ty3MeMjn0p%%26djt5xhAMk73pndJbZP0tCYYlvPvlUAyL8x7O%%2B3AwEa%%2B9b43yarIuPLCvujmKLTDyi%%3D%3Di";

            var options: any;

            options = {
             fileKey: 'file',
             fileName: 'esx.mov',
             httpMethod: 'PUT',
             chunkedMode: false,
             mimeType: 'video/quicktime',
             encodeURI: false,
             headers: {
                'Content-Type': 'video/quicktime'
              }
            };

            var ft = new Transfer();
            ft.upload(videoData[0].fullPath, link, options, false)
                .then((result: any) => {
                    this.success(result);
                }).catch((error: any) => {
                    this.failed(error);
                }); 

        }, function(err){
            alert(err);
        });
    }


}
Run Code Online (Sandbox Code Playgroud)

这是生成预签名PUT网址的代码。

var params = {Bucket: s3_bucket, Key: filename, Expires: 900000};
var url = { 
    'url' : s3.getSignedUrl('putObject', params)
};
Run Code Online (Sandbox Code Playgroud)

我明白了,SignatureDoesNotMatch错误。消息说,The request signature we calculated does not match the signature you provided. Check your key and signing method.我不确定我在这里做错了什么-我看了一些其他的SO和Ionic问题,并尝试了他们的建议无济于事。对我的所作所为有任何想法吗?

Mic*_*bot 5

您的上传PUT请求将带有Content-Type: video/quicktime标题。

Content-Type标头出现在请求中(而不是响应)时,其值是Signature V2规范请求中的非可选组件……这意味着您必须将其传递给生成签名的代码。

var params = {Bucket: s3_bucket, Key: filename, Expires: 900000};还需要这个字符串(video/quicktime传递给它,在这种情况下)ContentType: ...PUT请求(但不是一个GET要求,因为这说明你的内容发送,并GET请求发送习惯没有实际内容。

SDK文档似乎并没有明确提到这一点,但它是由S3最绝对必需的。