Last active
August 21, 2024 05:11
-
-
Save ijt/950790 to your computer and use it in GitHub Desktop.
Example of using http.Get in go (golang)
This file contains 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 ( | |
"fmt" | |
"io" | |
"log" | |
"net/http" | |
"os" | |
) | |
func main() { | |
if len(os.Args) != 2 { | |
fmt.Fprintf(os.Stderr, "Usage: %s URL\n", os.Args[0]) | |
os.Exit(1) | |
} | |
response, err := http.Get(os.Args[1]) | |
if err != nil { | |
log.Fatal(err) | |
} | |
defer response.Body.Close() | |
_, err := io.Copy(os.Stdout, response.Body) | |
if err != nil { | |
log.Fatal(err) | |
} | |
} |
How to pass header in GET request
How to pass header in GET request
How to pass header in GET request
Here is an example:
client := &http.Client{}
apiURL := "https://myapi.url/data"
req, err := http.NewRequest("GET", apiURL, nil)
if err != nil {
return nil, err
}
// add header to request
req.Header.Add("authkey", "...")
// perform get request
res, err := client.Do(req)
You dont need the else
since your os.Exit'ing on condition of Line 12
@R4wm, done.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you :)