34 lines
600 B
Go
34 lines
600 B
Go
package api
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"net/http"
|
|
"time"
|
|
)
|
|
|
|
// Request to API and unmarshal result
|
|
func (c *Client) Request(url string, value interface{}) error {
|
|
netClient := &http.Client{
|
|
Timeout: time.Second * 20,
|
|
}
|
|
req, err := http.NewRequest(http.MethodGet, c.URL+url, nil)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
req.Header = map[string][]string{
|
|
"authorization": {fmt.Sprintf("Basic %s", c.Token)},
|
|
}
|
|
resp, err := netClient.Do(req)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
err = json.NewDecoder(resp.Body).Decode(&value)
|
|
resp.Body.Close()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|