首頁  >  文章  >  後端開發  >  如何從AWS S3下載物件到記憶體中並透過Go中的請求發送它?

如何從AWS S3下載物件到記憶體中並透過Go中的請求發送它?

WBOY
WBOY轉載
2024-02-08 20:51:09832瀏覽

如何从AWS S3下载对象到内存中并通过Go中的请求发送它?

問題內容

有人可以幫我解決嘗試從 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 的路線(效果很好)。


正確答案


您的 filekey 是這樣的 url:

"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中文網其他相關文章!

陳述:
本文轉載於:stackoverflow.com。如有侵權,請聯絡admin@php.cn刪除