精细上传器s3中OPTIONS的自定义标题

问题描述 投票:0回答:1

我正在使用反应FineUploaderS3,与params:

this.myUploader = new FineUploaderS3({
  options: {
    request: {
      endpoint: "endpoint",
      accessKey: "accessKey",
      params: {
       Authorization: 'authorization'
      }
    },
    chunking: {
      enabled: true,
    },
    resume: {
      enabled: true
    },
    signature: {
      endpoint: "signatureUrl",
    },
    iframeSupport: {
      localBlankPagePath: null
    },
    params: {
      Authorization: 'authorization'
    }
  }
});

当我检查OPTION请求时,没有授权参数。如何添加?看来好的上传者目前没有支持吗?

谢谢!

javascript node.js amazon-s3 fine-uploader
1个回答
0
投票

FineUploaderS3中没有这样的选项。它不应该是,根据w3 OPTION不应该包含用户凭据,授权参数。

© www.soinside.com 2019 - 2024. All rights reserved.