问题 I need to make a GET request to an API with a bearer token in the authorization request. How can I do this in Go? I have the following code, but I haven't had success. package main import ( "io/ioutil" "log" "net/http" ) func main() { url := "https://api.globalcode.com.br/v1/publico/eventos" resp, err := http.Get(url) resp.Header.Add("Bearer", "token") if err != nil { log.Println("Erro ao realizar request.\n[ERRO] -", err) } body, _ := ioutil.ReadAll(resp.Body) log.Println(string([]byte(body)