在 fine uploader s3 的 OPTIONS 上自定义 header

Custom header on OPTIONS in fine uploader s3

我正在使用 React FineUploaderS3,参数为:

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'
    }
  }
});

当我检查选项请求时,没有授权参数。如何添加?好象上传器目前不支持那个?

谢谢!

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