5 Commits

Author SHA1 Message Date
Bastian de Byl
965535a403 removed content-type in get request 2023-09-13 13:47:53 -04:00
Bastian de Byl
913a8d1d9c moved module to json/helper 2023-02-26 15:20:33 -05:00
Bastian de Byl
8cec06641b added missing Accept header in Put() 2023-02-26 02:46:38 -05:00
Bastian de Byl
2ec64dc92b fixed Put function via revert 2023-02-26 02:35:43 -05:00
Bastian de Byl
3ceb440acc added missing Content-Type to Put and Post 2023-02-26 02:32:20 -05:00

View File

@@ -4,7 +4,6 @@ import (
"bytes"
"encoding/json"
"fmt"
"io"
"net/http"
)
@@ -37,7 +36,7 @@ func Get(uri string, authName string, authValue string, queries map[string]strin
return response, nil
}
func Post(uri string, authName string, authValue string, data io.Reader) (*http.Response, error) {
func Post(uri string, authName string, authValue string, data any) (*http.Response, error) {
jsonBytes, err := json.Marshal(data)
if err != nil {
return nil, err
@@ -51,6 +50,7 @@ func Post(uri string, authName string, authValue string, data io.Reader) (*http.
client := &http.Client{}
request.Header.Set("Accept", "application/json")
request.Header.Set("Content-Type", "application/json")
request.Header.Set("Authorization", fmt.Sprintf("%s %s", authName, authValue))
@@ -62,7 +62,7 @@ func Post(uri string, authName string, authValue string, data io.Reader) (*http.
return response, nil
}
func Put(uri string, authName string, authValue string, data io.Reader) (*http.Response, error) {
func Put(uri string, authName string, authValue string, data any) (*http.Response, error) {
jsonBytes, err := json.Marshal(data)
if err != nil {
return nil, err
@@ -77,6 +77,7 @@ func Put(uri string, authName string, authValue string, data io.Reader) (*http.R
client := &http.Client{}
request.Header.Set("Content-Type", "application/json")
request.Header.Set("Accept", "application/json")
request.Header.Set("Authorization", fmt.Sprintf("%s %s", authName, authValue))
response, err := client.Do(request)