我可以使用我的凭据通过 S3cmd 工具将一些内容推送到 S3 存储桶,使用 s3cmd put contentfile S3://test_bucket/test_file
问题是,我需要在其他没有安装 s3cmd 但安装了 wget 的计算机上从此存储桶中下载内容。
当我尝试使用 wget 从我的存储桶中下载一些内容时,我得到了这个:
https://s3.amazonaws.com/test_bucket/test_file
--2013-08-14 18:17:40-- `https`://s3.amazonaws.com/test_bucket/test_file
Resolving s3.amazonaws.com (s3.amazonaws.com)... [ip_here]
Connecting to s3.amazonaws.com (s3.amazonaws.com)|ip_here|:port... connected.
HTTP request sent, awaiting response... 403 Forbidden
`2013`-08-14 18:17:40 ERROR 403: Forbidden.
我已经通过 Amazon AWS Web 控制台手动公开了这个存储桶。
问题是:如何使用 wget 从 S3 存储桶下载内容?到一个txt本地文件?