亚马逊S3 - x-amz-meta

时间:2010-08-27 11:02:02

标签: php amazon-s3 metadata amazon-web-services

我正在通过PHP将照片上传到Amazon S3存储桶。到目前为止,一切都很顺利。

我的问题是x-amz-meta。我会使用x-amz-meta键/值对来存储数据,例如上传者的用户ID及其帐户类型(免费,高级等)吗?或者我将其存储为常规元数据,而不是以x-amz-meta为前缀?

目前,照片的示例元数据如下所示:

Key: x-amz-meta-user-id      Value: 1
Key: x-amz-meta-user-type    Value: free
Key: Content-Type            Value: image/jpeg

这有意义吗?希望如此。只是检查我是否以正确的方式存储这些元数据。

谢谢!

杰克

1 个答案:

答案 0 :(得分:8)

自定义元数据值必须使用x-amz-meta-前缀,例如:

Key: x-amz-meta-user-id      Value: 1
Key: x-amz-meta-user-type    Value: free