ポイントまとめ
Golangで構造体をJSONに変換してからPOSTするまでの流れのメモ
ポイントは以下の通り
- JSONに変換できるように構造体を定義
- Content-Typeをapplication/jsonに指定
- JSONをbytes.Buffer型に変換して送信
サンプルコード
package main
import (
"bytes"
"encoding/json"
"fmt"
"net/http"
)
// test server
const URL = "http://localhost:8000"
// sample structure
//// ポイント1
type Sample struct {
ID int `json: "id"`
Name string `json: "name"`
}
func main() {
// build sample structure
sample := new(Sample)
sample.ID = 0
sample.Name = "hoge"
// encode json
sample_json, _ := json.Marshal(sample)
fmt.Printf("[+] %s\n", string(sample_json))
// send json
//// ポイント2, 3
res, err := http.Post(URL, "application/json", bytes.NewBuffer(sample_json))
defer res.Body.Close()
if err != nil {
fmt.Println("[!] " + err.Error())
} else {
fmt.Println("[*] " + res.Status)
}
}
❯ nc -l 8000
POST / HTTP/1.1
Host: localhost:8000
User-Agent: Go-http-client/1.1
Content-Length: 22
Content-Type: application/json
Accept-Encoding: gzip
{"ID":0,"Name":"hoge"}