我在AWS s3中有一种字体。我想将其加载到我的Django网站中。
我正在使用django-storages
与AWS 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>