Questions marquées «apiary»

4
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) s := napping.Session{} h := &http.Header{} h.Set("X-Custom-Header", "myvalue") s.Header = …
244 json  rest  go  apiary 
En utilisant notre site, vous reconnaissez avoir lu et compris notre politique liée aux cookies et notre politique de confidentialité.
Licensed under cc by-sa 3.0 with attribution required.