How to set timeout for http.Get() requests in Golang?
HTTP Timeout
In Go, you can set a timeout for an http.Client by creating a custom http.Client with a Timeout field set to a time.Duration value, and then passing that custom http.Client to the http.Get() function. Here's an example:
Example
package main
import (
"net/http"
"time"
)
func main() {
client := &http.Client{
Timeout: 5 * time.Second,
}
_, err := client.Get("https://example.com")
if err != nil {
// handle error
}
// do something with response
}
HTTP timeout using Context
You can also use context package to set a timeout, Here is an example:
Example
package main
import (
"context"
"net/http"
"time"
)
func main() {
ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second)
defer cancel()
req, err := http.NewRequest("GET", "https://example.com", nil)
if err != nil {
// handle error
}
req = req.WithContext(ctx)
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
// handle error
}
// do something with resp
}
Most Helpful This Week
Most Helpful This Week
How to Convert string to integer type in Go?Example of Fscan, Fscanf, and Fscanln from FMT PackageHow to create thumbnail of an image?Replace any non-alphanumeric character sequences with a dash using RegexHow to kill execution of goroutine?Various examples of Carbon date-time package in GolangConstructors in GolangGolang Read Write and Process data in CSVGet Hours, Days, Minutes and Seconds difference between two dates [Future and Past]Anonymous Functions in Golang