Note: Related Post Get request headers from an incoming HTTP request in Golang – https://vikasboss.github.io/headers-http-request-golang/ Set response headers for an incoming HTTP request in Golang – https://vikasboss.github.io/set-resposne-headers-http-go/ Set request headers for an outgoing HTTP…
Tag: golang
Set request headers for an outgoing HTTP request in Go (Golang)
Note: Related Post Get headers from an incoming HTTP request in Go – https://vikasboss.github.io/headers-http-request-golang/ Set response headers for an incoming HTTP request in Go (Golang) – https://vikasboss.github.io/set-resposne-headers-http-go/ Get response headers for an outgoing HTTP…
Set response headers for an incoming HTTP request in Go (Golang)
Note: Related Post Get headers from an incoming HTTP request in Go – https://vikasboss.github.io/headers-http-request-golang/ Get response headers for an outgoing HTTP request in Golang- https://vikasboss.github.io/get-response-headers-making-go/ Set headers for an outgoing HTTP request…
Get JSON request body from a HTTP request in Go (Golang)
Overview json/encoding package contains methods that can be used to convert a request body of an incoming HTTP request into a golang struct. Before we start just a word about the request…
Decorator design pattern in Go (Golang)
Overview Decorator design pattern is a structural design pattern. It lets you provide additional functionality or decorates an object without altering that object. It is better understood with an example. Imagine you…
Check if a particular header is present in a HTTP request in Go (Golang)
Overview Below is the format in which a Header is represented in go. So internally header is a key value map with key being represented in canonical form. Canonical form means that…
Get request headers from an incoming HTTP request in Go (Golang)
Note: Related Post Set response headers for an incoming HTTP request in Go – https://vikasboss.github.io/set-resposne-headers-http-go/ Get response headers for an outgoing HTTP request in Golang- https://vikasboss.github.io/get-response-headers-making-go/ Set headers for an outgoing HTTP…
About GOLANG
This is chapter 1 of the golang comprehensive tutorial series. Refer to this link for other chapters of the series – Golang Comprehensive Tutorial Series Below is the table of contents for…
GO Installation
This is the chapter 2 of the golang comprehensive tutorial series. Refer to this link for other chapters of the series – Golang Comprehensive Tutorial Series Next Tutorial – Set up GO…
Golang Advanced Tutorial
Overview Welcome to the Golang advanced tutorial series. The tutorial in this series are elaborative and we have tried to cover all concepts with examples. This tutorial is for those who are…