-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.go
53 lines (42 loc) · 1.13 KB
/
config.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
53
//********************************************************************************************************************//
//
// Copyright (C) 2018 - 2021 J&J Ideenschmiede GmbH <[email protected]>
//
// This file is part of gohood.
// All code may be used. Feel free and maybe code something better.
//
// Author: Jonas Kwiedor (aka gowizzard)
//
//********************************************************************************************************************//
package gohood
import (
"bytes"
"net/http"
)
const (
baseUrl = "https://www.hood.de/api.htm"
method = "POST"
)
// Config is to define the request data
type Config struct {
Body []byte
}
// Send is to send a new request
func (c *Config) Send() (*http.Response, error) {
// Define client
client := &http.Client{}
// Define request
request, err := http.NewRequest(method, baseUrl, bytes.NewBuffer(c.Body))
if err != nil {
return nil, err
}
// Set header
request.Header.Set("Content-Type", "text/xml; charset=UTF-8")
// Send request & get response
response, err := client.Do(request)
if err != nil {
return nil, err
}
// Return data
return response, nil
}