I have an io.ReadCloser object (from an http.Response object).
io.ReadCloser
http.Response
What\'s the most efficient way to convert the entire stream to a strin
strin
data, _ := ioutil.ReadAll(response.Body) fmt.Println(string(data))