MK
Size: a a a
@
⌬C
⌬C
ИЗ
client = &http.Client{}
req, err := http.NewRequest(
"POST", url, strings.NewReader(string(jsonData)))
req.Header.Add(
"Content-type",
"application/json")
resp, err := client.Do(req)
respBytes, err := ioutil.ReadAll(resp.Body)
```esp, err := http.Post(url, "application/json", bytes.NewBuffer(bytesRepresentation))
var result map[string]interface{}
json.NewDecoder(resp.Body).Decode(&result)
```MK
ВС
RL
ВС
П
IB
П