Golang : Post data with url.Values{}
Just a short example on how to use url.Values{}. This code fragment is taken from previous tutorial on how to store cookies into cookie Jar.
Here you go :
urlData := url.Values{}
urlData.Set("search_query", "macross")
req, _ := http.NewRequest("POST", "https://www.youtube.com/results?search_query=", strings.NewReader(urlData.Encode()))
req.Header.Add("Content-Type", "application/x-www-form-urlencoded")
resp, err := client.Do(req)
if err != nil {
panic(nil)
}
body, _ := ioutil.ReadAll(resp.Body)
resp.Body.Close()
// display content to screen ... save this to a HTML file and view the file with browser ;-)
fmt.Println(string(body))
Happy coding!
See also : Golang : Storing cookies in http.CookieJar 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.8k Mac/Linux/Windows : Get CPU information from command line
+10.5k Golang : Interfacing with PayPal's IPN(Instant Payment Notification) example
+12k Golang : md5 hash of a string
+26.2k Golang : Convert(cast) string to uint8 type and back to string
+5.1k PHP : See installed compiled-in-modules
+15.1k Golang : How to add color to string?
+14.5k Golang : Reset buffer example
+13.2k Golang : Date and Time formatting
+7.9k Golang : Grayscale Image
+8.1k Android Studio : Rating bar example
+9.3k Golang : Web(Javascript) to server-side websocket example
+15.2k nginx: [emerg] unknown directive "ssl"