Skip to content

Instantly share code, notes, and snippets.

@h1z3y3
Created January 5, 2022 07:42
Show Gist options
  • Save h1z3y3/c3e4c4588b241988315d8e56c94eeb3b to your computer and use it in GitHub Desktop.
Save h1z3y3/c3e4c4588b241988315d8e56c94eeb3b to your computer and use it in GitHub Desktop.
req, _ := http.NewRequest("GET", "http://your_link_url", nil)
req.Header.Set("Authorization", fmt.Sprintf("Bearer xxxxxxxx"))
req.Header.Set("Content-Type", "application/json")
client := &http.Client{}
resp, _ := client.Do(req)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment