package main

import (
    "io"
    "net/http"
    "os"
)

func main() {
    rsp, err := http.Get("http://w...content-available-to-author-only...e.com")
    if err != nil {
        panic(err)
    }
    defer rsp.Body.Close()

    _, err = io.Copy(os.Stdout, rsp.Body)
    if err != nil {
        panic(err)
    }
}