HTTP 头部 | 说明 | 示例 |
Content-Type | 文件的 MIME 信息 | image/jpeg |
Cache-Control | 文件的缓存机制 | no-cache:不可直接使用缓存,而是先到服务端验证 Object 是否已更新。如果 Object 已更新,表明缓存已过期,需从服务端重新下载 Object;如果 Object 未更新,表明缓存未过期,此时将使用本地缓存。 max-age=200:缓存内容的相对过期时间,单位为秒。 |
Content-Disposition | MIME 协议的扩展 | inline:直接预览文件内容。 attachment:以原文件名的形式下载到浏览器指定路径。 attachment; filename="FileName":以自定义文件名的形式下载到浏览器指定路径。FileName 用于自定义下载后的文件名称,例如 example.jpg。如果附件名为中文,则需要经过 URL 编码,示例为 attachment; filename* = UTF-8' '%E4%B8%AD%E6%96%87.txt |
Content-Encoding | 文件的编码格式 | gzip 注意:修改了 Header 中的 Content-Encoding 为 gzip,但是文件本身没有提前使用 gzip 压缩过,会出现解码错误。 |
Expires | 用来控制缓存的失效日期 | Wed, 21 Oct 2015 07:28:00 GMT |
x-cos-meta-[自定义后缀] | 用户自定义内容 | x-cos-meta-via: homepage 注意:头部名称仅支持减号(-)、数字、英文(a~z)。英文字符的大写字母会被转成小写字母,不支持下划线(_)在内的其他字符。 |
exampleobject.txt
。GET /exampleobject.txt HTTP/1.1Host: examplebucket-1250000000.cos.ap-beijing.myqcloud.comDate: Fri, 10 Apr 2020 09:35:16 GMTAuthorization: q-sign-algorithm=sha1&q-ak=AKID8A0fBVtYFrNm02oY1g1JQQF0c3JO****&q-sign-time=1586511316;1586518516&q-key-time=1586511316;1586518516&q-header-list=date;host&q-url-param-list=&q-signature=1bd1898e241fb978df336dc68aaef4c0acae****Connection: close
HTTP/1.1 200 OKContent-Type: text/plainAccess-Control-Allow-Origin: *Last-Modified: Fri, 10 Apr 2020 09:35:05 GMT
参数 | 值 |
Content-Type | image/jpeg |
Cache-Control | no-cache |
Content-Disposition | attachment; filename* = UTF-8' '%E4%B8%AD%E6%96%87.jpeg |
x-cos-meta-md5 | 1234 |
GET /exampleobject.txt HTTP/1.1Host: examplebucket-1250000000.cos.ap-beijing.myqcloud.comDate: Fri, 10 Apr 2020 09:35:16 GMTAuthorization: q-sign-algorithm=sha1&q-ak=AKID8A0fBVtYFrNm02oY1g1JQQF0c3JO****&q-sign-time=1586511316;1586518516&q-key-time=1586511316;1586518516&q-header-list=date;host&q-url-param-list=&q-signature=1bd1898e241fb978df336dc68aaef4c0acae****Connection: close
HTTP/1.1 200 OKCache-Control: no-cacheContent-Type: image/jpegContent-Disposition: attachment; filename* = UTF-8' '%E4%B8%AD%E6%96%87.jpegx-cos-meta-md5: 1234Access-Control-Allow-Origin: *Last-Modified: Fri, 10 Apr 2020 09:35:05 GMT
本页内容是否解决了您的问题?