Created
September 8, 2016 02:42
-
-
Save superbrothers/dae0030c151d1f3c24311df77405169b to your computer and use it in GitHub Desktop.
http request with context in Go
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"context" | |
"fmt" | |
"log" | |
"net/http" | |
"time" | |
) | |
func main() { | |
req, err := http.NewRequest("GET", "http://www.yahoo.co.jp", nil) | |
if err != nil { | |
log.Fatalf("%v", err) | |
} | |
ctx, cancel := context.WithTimeout(req.Context(), 1*time.Millisecond) | |
defer cancel() | |
req = req.WithContext(ctx) | |
client := http.DefaultClient | |
res, err := client.Do(req) | |
if err != nil { | |
log.Fatalf("%v", err) | |
} | |
fmt.Printf("%v\n", res.StatusCode) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
it's actually the same. When he initialized the request with
http.NewRequest()
, per the documentation, the context of the request is the background context: