Golang : Calculate entire request body length during run time
Problem:
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 to calculate the entire request body as a requirement for the Content-Length
header.
Solution:
From the https://golang.org/pkg/net/http/#Request type documentation :
// ContentLength records the length of the associated content.
// The value -1 indicates that the length is unknown.
// Values >= 0 indicate that the given number of bytes may
// be read from Body.
// For client requests, a value of 0 means unknown if Body is not nil.
ContentLength int64
We can derive the request body size(length) during run time from the Request.ContentLength
. Therefore, to send the number of bytes in the entire request body as a header information, you can do it in such as way.
request.Header.Add("Content-Length", strconv.FormatInt(request.ContentLength,10))
strconv.FormatInt()
is to convert the int64 type to string type.
Hope this helps!
References:
https://www.socketloop.com/tutorials/golang-convert-cast-int64-to-string
See also : Golang : Google Drive API upload and rename example
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+6.4k CodeIgniter : form input set_value cause " to become & quot
+7.4k Golang : Check to see if *File is a file or directory
+9.1k Golang : Intercept and compare HTTP response code example
+21.9k Golang : Use TLS version 1.2 and enforce server security configuration over client
+5.7k Golang : Error handling methods
+10.9k Golang : How to transmit update file to client by HTTP request example
+22.2k Golang : How to run Golang application such as web server in the background or as daemon?
+13.5k Golang : Read XML elements data with xml.CharData example
+5.5k Golang : If else example and common mistake
+9.8k Golang : Resumable upload to Google Drive(RESTful) example
+36.6k Golang : Validate IP address
+7.3k Golang : File system scanning