如何在Nodejs中获取s3 url?
我在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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 s3.upload 方法,就像这样
,您可以通过
。 html#upload-property" rel="nofollow noreferrer">Aws Docs for data.Location(检查回调参数)
You can use the s3.upload method just like this
once you do that you can fetch the URL of the uploaded file by
Aws Docs for data.Location ( check callback parameters )