4
Come faccio a inviare una stringa JSON in una richiesta POST in Go
Ho provato a lavorare con Apiary e ho creato un modello universale per inviare JSON a un server simulato e avere questo codice: 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 …