-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample_request.go
More file actions
40 lines (31 loc) · 925 Bytes
/
Copy pathexample_request.go
File metadata and controls
40 lines (31 loc) · 925 Bytes
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
package backend
import (
"bytes"
"encoding/json"
"net/http"
)
func (api *Backend) ExampleGetRequest(id string, loggerCallBack func(string)) (responseData string, err error) {
responseRaw, _, err := api.call(http.MethodGet, api.config.BaseUrl+"/api/example/"+id, bytes.NewBuffer([]byte{}))
if err != nil {
printLog(loggerCallBack, err.Error())
return "", err
}
return string(responseRaw), nil
}
func (api *Backend) ExamplePostRequest(id string, loggerCallBack func(string)) (responseData string, err error) {
jsonRequestData, err := json.Marshal(struct {
ID string `json:"id"`
}{
ID: id,
})
if err != nil {
printLog(loggerCallBack, err.Error())
return "", err
}
responseRaw, _, err := api.call(http.MethodPost, api.config.BaseUrl+"/api/example", bytes.NewBuffer(jsonRequestData))
if err != nil {
printLog(loggerCallBack, err.Error())
return "", err
}
return string(responseRaw), nil
}