有人可以幫我解決嘗試從 s3 下載檔案時遇到的這個錯誤嗎?
所以我想透過 go gin 建立儲存服務 api,並且我想要一個使用 s3 物件金鑰下載物件然後將此物件傳送回客戶端的路線。
cfg,_ := config.loaddefaultconfig(context.todo()) // create an amazon s3 service client s3client := s3.newfromconfig(cfg) downloader := manager.newdownloader(s3client)
router.post("/download-s3", func(ctx *gin.context) { var data map[string]string if err := ctx.shouldbindjson(&data); err != nil { log.println("error: bind error") ctx.json(http.statusbadrequest, gin.h{"error": err.error()}) return } log.println("body request data (filekey): ", data["filekey"]) filekey := data["filekey"] /// buffer read buf := make([]byte, 100) // wrap with aws.writeatbuffer w := manager.newwriteatbuffer(buf) // download file into the memory numbytesdownloaded, err := downloader.download(ctx, w, &s3.getobjectinput{ bucket: aws.string(bucketname), key: aws.string(filekey), }) if err != nil { log.println("error: download error") ctx.json(http.statusbadrequest, gin.h{"error": err.error()}) return } ctx.json(http.statusaccepted, gin.h{ "message": fmt.sprintf("'%s' downloaded!", "test.jpg"), "numbytesdownloaded": numbytesdownloaded, }, ) ctx.data(http.statusok, "application/octet-stream", w.bytes()) })
上面的程式碼給了我這個錯誤:
操作錯誤s3:getobject,https回應錯誤statuscode:403,requestid:8khyw3rcs2za7d95,hostid:kolo gy / dtzrrovswsb1bxinln8w xdl0lnmysuwjnhupmbvk4itdfph1bxinln8w xdl0lnmysuwjnhupmbvk4itdfp mq.o8ef xdl0lnmysuwjnhupmbvk4itdfp mq.o8edfp;
{ "filekey": "https://xxx-xxx.s3.ap-southeast-1.amazonaws.com/agencies/photo/06%3A03%3A2023_17%3A42%3A42_gggi_db_er.png" }我將所有這些 aws_s3_bucket_name、aws_region、aws_access_key_id、aws_secret_access_key 儲存在 .env 檔案中,而且我認為我將它們設定正確,因為我有另一條將檔案上傳到 s3 的路線(效果很好)。
"https://xxx-xxx.s3.ap-southeast-1.amazonaws.com/agencies/photo/06%3A03%3A2023_17%3A42%3A42_gggi_db_er.png"這只能從 http 用戶端使用,例如網頁瀏覽器或curl。
具體來說,它不是有效的 s3 物件金鑰。使用 getobject 或類似的 s3 api 時,它需要是有效的金鑰,例如
agcies/photo/xyz.png 並且不應進行 url 編碼。
以上是如何從AWS S3下載物件到記憶體中並透過Go中的請求發送它?的詳細內容。更多資訊請關注PHP中文網其他相關文章!