Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
965535a403 | ||
|
|
913a8d1d9c | ||
|
|
8cec06641b | ||
|
|
2ec64dc92b |
@@ -4,7 +4,6 @@ import (
|
|||||||
"bytes"
|
"bytes"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"fmt"
|
"fmt"
|
||||||
"io"
|
|
||||||
"net/http"
|
"net/http"
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -17,7 +16,6 @@ func Get(uri string, authName string, authValue string, queries map[string]strin
|
|||||||
client := &http.Client{}
|
client := &http.Client{}
|
||||||
|
|
||||||
request.Header.Set("Accept", "application/json")
|
request.Header.Set("Accept", "application/json")
|
||||||
request.Header.Set("Content-Type", "application/json")
|
|
||||||
request.Header.Set("Authorization", fmt.Sprintf("%s %s", authName, authValue))
|
request.Header.Set("Authorization", fmt.Sprintf("%s %s", authName, authValue))
|
||||||
|
|
||||||
if len(queries) > 0 {
|
if len(queries) > 0 {
|
||||||
@@ -38,7 +36,7 @@ func Get(uri string, authName string, authValue string, queries map[string]strin
|
|||||||
return response, nil
|
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)
|
jsonBytes, err := json.Marshal(data)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
@@ -64,7 +62,7 @@ func Post(uri string, authName string, authValue string, data io.Reader) (*http.
|
|||||||
return response, nil
|
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)
|
jsonBytes, err := json.Marshal(data)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
@@ -79,6 +77,7 @@ func Put(uri string, authName string, authValue string, data io.Reader) (*http.R
|
|||||||
client := &http.Client{}
|
client := &http.Client{}
|
||||||
|
|
||||||
request.Header.Set("Content-Type", "application/json")
|
request.Header.Set("Content-Type", "application/json")
|
||||||
|
request.Header.Set("Accept", "application/json")
|
||||||
request.Header.Set("Authorization", fmt.Sprintf("%s %s", authName, authValue))
|
request.Header.Set("Authorization", fmt.Sprintf("%s %s", authName, authValue))
|
||||||
|
|
||||||
response, err := client.Do(request)
|
response, err := client.Do(request)
|
||||||
Reference in New Issue
Block a user