如何在Nodejs中获取s3 url?

发布于 2025-01-11 03:56:24 字数 136 浏览 0 评论 0原文

我在s3上上传了一个文件。现在我想在 Nodejs 中获取该文件的 s3 url。 url 的格式应为“s3://Bucket-name/filename.txt”

我尝试了 s3.getSignedUrl() 但它返回了 https url。

I uploaded a file on s3. Now I want to get the s3 url of that file in Nodejs.
The url should have format "s3://Bucket-name/filename.txt"

i tried s3.getSignedUrl() but it returned a https url.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

意中人 2025-01-18 03:56:24

您可以使用 s3.upload 方法,就像这样

var params = {Bucket: 'bucket', Key: 'key', Body: stream};
var options = {partSize: 10 * 1024 * 1024, queueSize: 1};
s3.upload(params, options, function(err, data) {
  console.log(err, data);
});

,您可以通过

`data.Location`

。 html#upload-property" rel="nofollow noreferrer">Aws Docs for data.Location(检查回调参数)

You can use the s3.upload method just like this

var params = {Bucket: 'bucket', Key: 'key', Body: stream};
var options = {partSize: 10 * 1024 * 1024, queueSize: 1};
s3.upload(params, options, function(err, data) {
  console.log(err, data);
});

once you do that you can fetch the URL of the uploaded file by

`data.Location`

Aws Docs for data.Location ( check callback parameters )

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文