4
Jak wysłać ciąg JSON w żądaniu POST w Go
Próbowałem pracować z pasieką i stworzyłem uniwersalny szablon, aby wysłać JSON na próbny serwer i mieć ten kod: 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 = …