ref: ab0656c81bbb21aad1528da9cbb39ea0e85879e2
client/event-client-rest.go
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
package main import ( "fmt" "strconv" ) func (c *YatsClient) EventList(from int64, to int64) string { if from == 0 { panic("From is empty") } var body string if to == 0 { body = "{ \"from\":" + strconv.FormatInt(from, 10) + " }" } else { body = "{ \"from\":" + strconv.FormatInt(from, 10) + ",\"to\":" + strconv.FormatInt(to, 10) + " }" } fmt.Printf("request: [%s]\n", body) return c.ApiPost(c.config.Endpoint+"/event/search", body) } |