Golang : http.Get example
Grabbing content in raw HTML format is useful for crawling or parsing purpose. This short tutorial demonstrates how easy it is to get the content of a website with http.Get()
function.
package main
import (
"fmt"
"io/ioutil"
"net/http"
"os"
)
func main() {
// http.Get() can handle gzipped data response
// automagically
resp, err := http.Get("https://golang.org")
if err != nil {
fmt.Println(err)
os.Exit(1)
}
defer resp.Body.Close()
htmlData, err := ioutil.ReadAll(resp.Body)
if err != nil {
fmt.Println(err)
os.Exit(1)
}
fmt.Println(os.Stdout, string(htmlData))
}
run this code and if everything goes well, you should see a bunch of HTML data being printed out.
NOTE : If you encounter crypto error regarding ssl connection, upgrade your Golang to latest version if problem persists, upgrade the certs on your machine
Reference :
See also : Golang : Download file example
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+4.7k Unix/Linux : secure copying between servers with SCP command examples
+5.8k Golang : Compound interest over time example
+12.4k Golang : Pass database connection to function called from another package and HTTP Handler
+16.8k Golang : XML to JSON example
+9.4k Golang : Copy map(hash table) example
+9.2k Golang : Find the length of big.Int variable example
+19.8k Golang : How to get own program name during runtime ?
+8.1k Golang : Number guessing game with user input verification example
+17.2k Golang : Get future or past hours, minutes or seconds
+26.8k Golang : Find files by name - cross platform example
+6.4k Golang : How to validate ISBN?
+10k Golang : Detect number of faces or vehicles in a photo