问题:
如何执行预签名 POST upload 使用 Go 将文件上传到 AWS S3 存储桶,而不使用传统的预签名 PUT方法?
解决方案:
要执行预签名 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中文网其他相关文章!