无法从AWS S3加载字体(400错误请求)

时间:2020-03-11 12:54:16

标签: amazon-web-services amazon-s3 boto3 django-storage

我在AWS s3中有一种字体。我想将其加载到我的Django网站中。 我正在使用django-storagesAWS S3通信 这是我的加载方式

<style>
    @font-face {
        font-family: caviar;
        src: url({% static 'webfonts/fonts/CaviarDreams.ttf' %});
    }
</style>

我收到400错误的请求错误。

我的存储桶策略:

<?xml version="1.0" encoding="UTF-8"?>
<CORSConfiguration xmlns="http://s3.amazonaws.com/doc/2006-03-01/">
<CORSRule>
    <AllowedOrigin>*</AllowedOrigin>
    <AllowedMethod>GET</AllowedMethod>
    <AllowedMethod>HEAD</AllowedMethod>
    <MaxAgeSeconds>3000</MaxAgeSeconds>
    <AllowedHeader>Authorization</AllowedHeader>
</CORSRule>
</CORSConfiguration>

错误:

<Error>
<Code>AuthorizationQueryParametersError</Code>
<Message>
Query-string authentication version 4 requires the X-Amz-Algorithm, X- 
Amz-Credential, X-Amz-Signature, X-Amz-Date, X-Amz-SignedHeaders, and 
X-Amz-Expires parameters.
</Message>
<RequestId>CA8F49CC58B9B9D1</RequestId>
 <HostId> xxxx08=
</HostId>
</Error>

0 个答案:

没有答案