neko/internal/utils/request.go

23 lines
320 B
Go
Raw Normal View History

2021-03-11 01:15:18 +13:00
package utils
import (
"bytes"
"io/ioutil"
"net/http"
)
func HttpRequestGET(url string) (string, error) {
rsp, err := http.Get(url)
if err != nil {
return "", err
}
defer rsp.Body.Close()
buf, err := ioutil.ReadAll(rsp.Body)
if err != nil {
return "", err
}
return string(bytes.TrimSpace(buf)), nil
}