I want to send []byte data over http via post on Google App Engine in Go. How do I construct bodyType and, body for the request?
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
package app
import (
"http"
"appengine"
"appengine/urlfetch"
"bytes"
"fmt"
)
func init() {
http.HandleFunc("/post", post)
}
func post(w http.ResponseWriter, r *http.Request) {
c := appengine.NewContext(r)
bs := []byte{1,2,3}
buf := bytes.NewBuffer(bs)
client := http.Client{Transport: &urlfetch.Transport{Context:c}}
if _, err := client.Post("http://localhost:8080/", "application/octet-stream", buf); err != nil {
fmt.Println(err)
}
}