-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
52 lines (39 loc) · 951 Bytes
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
package main
import (
"encoding/json"
"fmt"
"io/ioutil"
"net/http"
)
func main() {
//Printfはフォーマットを含む
//Printlnはフォーマットを含まない 改行あり
//Printはフォーマットを含まない 改行なし
url := "https://api.mcsrvstat.us/2/hypixel.net"
req, _ := http.NewRequest(http.MethodGet, url, nil)
client := new(http.Client)
resp, err := client.Do(req)
if err != nil {
fmt.Println("Error Request: ", err)
return
}
defer resp.Body.Close() //TCPコネクションをクローズする
if resp.StatusCode != 200 {
fmt.Println("Error Response:", resp.Status)
return
}
fmt.Printf("%-v", resp)
body, _ := ioutil.ReadAll(resp.Body)
var Server Root
json.Unmarshal(body, Server)
fmt.Printf("結果: %-v", Server)
}
//WebAPIから返されるjsonの構造体を準備
type Root struct {
Value []Server `json:"value"`
}
type Server struct {
ip string
port int
ping bool
}