gpt4 book ai didi

javascript - S3 文件的 PDF.js CORS 问题

转载 作者:搜寻专家 更新时间:2023-11-01 04:41:24 24 4
gpt4 key购买 nike

我正在尝试使用 PDF.js 1.0.571 查看托管在 S3 存储桶上的 PDF。但是,我收到以下错误:

CORS error

工作 JSBin 来自 a similar issue : http://jsbin.com/pdfjs-helloworld-v2/7086/edit

不工作 JSBin: http://jsbin.com/pdfjs-helloworld-v2/10562/edit

我的 S3 CORS 设置:

CORS setup

用于测试的 S3 PDF:http://sheethub.s3.amazonaws.com/sheets/0b26b42aa027c6b73855feb68b8c089e893f8114/original/another_guldove.pdf?1407157315

我的 CORS 设置有误吗?我在这里错过了什么? http://sheethub.s3.amazonaws.com 之间有区别吗?和 http://s3.amazonaws.com/sheethub

最佳答案

对于仍然面临这个问题并登陆这里的人:

在您的 S3 CORS 配置上使用此配置。按照 this link 上的说明进行操作更新您的 CORS 配置。不要忘记保存。

<!-- Sample policy -->
<CORSConfiguration>
<CORSRule>
<AllowedOrigin>*</AllowedOrigin>
<AllowedMethod>GET</AllowedMethod>
<AllowedMethod>HEAD</AllowedMethod>
<MaxAgeSeconds>3000</MaxAgeSeconds>
<AllowedHeader>Authorization</AllowedHeader>
</CORSRule>
</CORSConfiguration>

<AllowedMethod>HEAD</AllowedMethod>有所作为。

关于javascript - S3 文件的 PDF.js CORS 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25104448/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com