4
Go'daki bir POST isteğinde nasıl JSON dizesi gönderirim?
Apiary ile çalışmayı denedim ve sahte sunucuya JSON göndermek ve bu kodu var evrensel bir şablon yaptım: package main import ( "encoding/json" "fmt" "github.com/jmcvetta/napping" "log" "net/http" ) func main() { url := "http://restapi3.apiary.io/notes" fmt.Println("URL:>", url) s := napping.Session{} h := &http.Header{} h.Set("X-Custom-Header", "myvalue") s.Header = h var jsonStr = []byte(` …