首頁 >後端開發 >Golang >如何使用Go實作預簽POST檔上傳到AWS S3?

如何使用Go實作預簽POST檔上傳到AWS S3?

Mary-Kate Olsen
Mary-Kate Olsen原創
2024-11-25 06:02:11648瀏覽

How to Achieve Pre-signed POST File Uploads to AWS S3 using Go?

預簽名POST 上傳到Go 中的AWS S3

問題:

如何執行預簽POST upload 使用GoPOST upload將檔案上傳到AWS S3 儲存桶,而不使用傳統的預簽PUT方法?

解決方案:

要執行預先簽署POST 上傳,請依照以下步驟操作:

  1. 設定S3公開下載的儲存桶: 設定儲存桶策略以允許公開下載僅。
  2. 建立 POST 策略:產生允許上傳到特定金鑰、儲存桶並授予公共讀取存取權的 POST 策略。
  3. 產生並簽署策略: 使用 S3 儲存桶擁有者的憑證產生並簽署 POST 策略,將其編碼為 base64 並十六進位。
  4. 建構並發布多部分錶單資料: 使用下列欄位建立多部分錶單資料請求:

    • (key) 的名稱要上傳的檔案
    • (策略)base64 編碼的POST策略
    • (signature) 策略的十六進位編碼簽章
    • (x-amz-credential) 用於簽署策略
    • (x-amz-演算法)用於簽署策略的演算法(AWS4-HMAC-SHA256)
    • (x-amz-date)用於簽署策略的日期

Go 中的範例程式碼:

import (
    "bytes"
    "fmt"
    "io"
    "mime/multipart"
    "net/http"
    "strings"
)

// Fields represents the fields to be uploaded in the multipart form data request.
type Fields struct {
    Key, Value string
}

// Upload performs a Pre-signed POST upload using the provided URL and fields.
func Upload(url string, fields []Fields) error {
    var b bytes.Buffer
    w := multipart.NewWriter(&b)
    for _, f := range fields {
        fw, err := w.CreateFormField(f.Key)
        if err != nil {
            return err
        }
        if _, err := io.WriteString(fw, f.Value); err != nil {
            return err
        }
    }
    w.Close()

    req, err := http.NewRequest("POST", url, &b)
    if err != nil {
        return err
    }
    req.Header.Set("Content-Type", w.FormDataContentType())

    client := &http.Client{}
    res, err := client.Do(req)
    if err != nil {
        return err
    }
    if res.StatusCode != http.StatusOK {
        err = fmt.Errorf("bad status: %s", res.Status)
    }
    return nil
}

以上是如何使用Go實作預簽POST檔上傳到AWS S3?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn