問題:
事前署名された POST を実行する方法従来の署名付き PUT を使用せずに、Go を使用してファイルを AWS S3 バケットにアップロードするには、upload を使用します。
解決策:
事前署名された POST アップロードを実行するには、次の手順に従います:
マルチパート フォーム データの構築と POST: 次のフィールドを使用してマルチパート フォーム データ リクエストを作成します:
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 中国語 Web サイトの他の関連記事を参照してください。