Skip to content
/ gomf Public

go multipart/form-data easy build, you can upload many files and form-fields within one request

Notifications You must be signed in to change notification settings

nelsonken/gomf

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

golang 可多文件上传的request builder 库

测试方法

  1. start php upload server: php -S 127.0.0.1:8080 ./
  2. run go test -v

使用方法

	fb := gomf.New()
	fb.WriteField("name", "accountName")
	fb.WriteField("password", "pwd")
	fb.WriteFile("picture", "icon.png", "image/jpeg", []byte(strings.Repeat("0", 100)))

	log.Println(fb.GetBuffer().String())

	req, err := fb.GetHTTPRequest(context.Background(), "http://127.0.0.1:8080/up.php")
	if err != nil {
		log.Fatal(err)
	}
	res, err := http.DefaultClient.Do(req)

	log.Println(res.StatusCode)
	log.Println(res.Status)

	if err != nil {
		log.Fatal(err)
	}

	b, err := ioutil.ReadAll(res.Body)
	if err != nil {
		log.Fatal(err)
	}

	log.Println(string(b))

About

go multipart/form-data easy build, you can upload many files and form-fields within one request

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published