I need to get public permanent (not signed) URL of a resource using golang and official aws go sdk. In Java AWS S3 SDK there's a method called getResourceUrl()
what's the equivalent in go?

如何在Golang中从AWS S3获取资源URL
- 写回答
- 好问题 0 提建议
- 关注问题
- 邀请回答
-
1条回答 默认 最新
- douxianji6181 2017-10-04 22:40关注
This is how you get presigned URLs using the go sdk:
func GetFileLink(key string) (string, error) { svc := s3.New(some params) params := &s3.GetObjectInput{ Bucket: aws.String(a bucket name), Key: aws.String(key), } req, _ := svc.GetObjectRequest(params) url, err := req.Presign(15 * time.Minute) // Set link expiration time if err != nil { global.Log("[AWS GET LINK]:", params, err) } return url, err }
If what you want is just the URL of a public access object you can build the URL yourself:
https://<region>.amazonaws.com/<bucket-name>/<key>
Where is something like
us-east-2
. So using go it will be something like:url := "https://%s.amazonaws.com/%s/%s" url = fmt.Sprintf(url, "us-east-2", "my-bucket-name", "some-file.txt")
Here is a list of all the available regions for S3.
本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 无用评论 打赏 举报