You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
go-weather/web.go

21 lines
374 B

package main
import (
"fmt"
"io/ioutil"
"net/http"
)
2 years ago
func loadWebPage(webURL string) ([]byte, error) {
resp, err := http.Get(webURL)
//reads html as a slice of bytes
html, err := ioutil.ReadAll(resp.Body)
//check response codes
if resp.StatusCode >= 400 && resp.StatusCode <= 499 {
err = fmt.Errorf("response Code: %v", resp.StatusCode)
}
return html, err
}