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

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

WBOY
發布: 2024-02-08 20:51:09
轉載
867 人瀏覽過

如何从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; </p>請求正文是這樣的:<p> <div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:php;toolbar:false;">{ &quot;filekey&quot;: &quot;https://xxx-xxx.s3.ap-southeast-1.amazonaws.com/agencies/photo/06%3A03%3A2023_17%3A42%3A42_gggi_db_er.png&quot; }</pre><div class="contentsignin">登入後複製</div></div> </p>我將所有這些 aws_s3_bucket_name、aws_region、aws_access_key_id、aws_secret_access_key 儲存在 .env 檔案中,而且我認為我將它們設定正確,因為我有另一條將檔案上傳到 s3 的路線(效果很好)。 <p></p><br/>正確答案<h2 class="daan"></h2><br/>您的 filekey 是這樣的 url:<p> <div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:php;toolbar:false;">&quot;https://xxx-xxx.s3.ap-southeast-1.amazonaws.com/agencies/photo/06%3A03%3A2023_17%3A42%3A42_gggi_db_er.png&quot;</pre><div class="contentsignin">登入後複製</div></div> 這只能從 http 用戶端使用,例如網頁瀏覽器或curl。 <p> </p>具體來說,它不是有效的 s3 物件金鑰。使用 getobject 或類似的 s3 api 時,它需要是有效的金鑰,例如 <p>agcies/photo/xyz.png<code> 並且不應進行 url 編碼。

以上是如何從AWS S3下載物件到記憶體中並透過Go中的請求發送它?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:stackoverflow.com
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板