Get/Set HTTP Headers in Go Request
HTTP headers, we all need ’em 😉
Here’s how you can get and set these headers within your Go requests. These include request coming into your router handlers and requests you are sending out to other systems through net/http. This can be thought of as being the same as reading headers from a request and creating new ones.
First we’ll start with reading them from the request.