«apiary» 태그된 질문

4
Go에서 POST 요청으로 JSON 문자열을 보내는 방법
Apiary로 작업을 시도하고 JSON을 모의 서버로 보내고 다음 코드를 갖도록 범용 템플릿을 만들었습니다. 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(` { "title": "Buy cheese …
244 json  rest  go  apiary 
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.