client auth

This commit is contained in:
Mark McGranaghan 2012-09-18 15:59:27 -07:00
parent 8815eaf859
commit 5fbddc7544
2 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,14 @@
package main
import ("net/http"; "io/ioutil"; "fmt")
func main() {
req, _ := http.NewRequest("GET", "http://127.0.0.1:5000/", nil)
req.SetBasicAuth("u", "supersecret")
res, resErr := http.DefaultClient.Do(req)
if resErr != nil { panic(resErr) }
defer res.Body.Close()
body, bodyErr := ioutil.ReadAll(res.Body)
if bodyErr != nil { panic(bodyErr) }
fmt.Print(string(body))
}