Comment envoyer une chaîne JSON dans une demande POST dans Go

J'ai essayé de travailler avec Apiary et j'ai créé un modèle universel pour envoyer JSON au faux serveur et avoir ce code: 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)...