[15] Results
Golang : Get query string value on a POST request
golang query-string post-requestIn this tutorial, we will learn how to configure your Golang web application(in HTTP handler) to accept query string input….... read more
Golang : Gin framework accept query string by post request example
golang gin query-string post-requestGolang's standard net/http
package has excellent and sufficient functions to handle web applications such as a micro service or API….... read more
Golang : Post data with url.Values{}
golang url-values post-data add-headerJust a short example on how to use url.Values{}. This code fragment is taken from previous tutorial on….... read more
Golang : How to log each HTTP request to your web server?
golang log-http-request save-log-to-file request-loggerProblem: You want to log each HTTP request made to your web server complete with duration (start time - end….... read more
Golang : Delay or limit HTTP requests example
golang http-request delay limit muxProblem: For some technical limitation reason, you want to delay or slow down HTTP requests to one of your machines….... read more
Golang : Calculate entire request body length during run time
golang content-length request-header entire-request-bodyProblem: You are trying to figure out what to fill into the number_of_bytes_in_entire_request_body
field when making a http.NewRequest()
. You need….... read more
Golang : Identifying Golang HTTP client request
golang IoT proxy security http-request botnetProblem: You've read about the Mirai DDoS malware that infects IoT devices and turning them into a massive….... read more
Golang : How to determine if request or crawl is from Google robots
golang crawlers robots web-request user-agentFor this tutorial, we will learn how to detect a visit by Google robots or web crawlers and learn how….... read more