Thursday, February 21, 2019

Simple GET and POST API client in Go Programming Language


package main
import (
"fmt"
"io/ioutil"
"net/http"
"net/url"
)
func main() {
//Go Client for GET request. Change the url as per the request
fmt.Println("Starting the application...")
client := &http.Client{}
response, err := client.Get("https://httpbin.org/post")
if err != nil {
fmt.Printf("The HTTP request failed with error %s\n", err)
} else {
data, _ := ioutil.ReadAll(response.Body)
fmt.Println(string(data))
}
defer response.Body.Close()
// GO client for Post request
//change the url as per the need.
link := "https://httpbin.org/post"
data := url.Values{}
data.Add("wl_data", "I am a boy")
response, err = client.PostForm(link, data)
if err != nil {
fmt.Printf("The HTTP request failed with error %s\n", err)
} else {
data, _ := ioutil.ReadAll(response.Body)
fmt.Println(string(data))
}
fmt.Println("Terminating the application...")
defer response.Body.Close()
}
view raw get_post_.go hosted with ❤ by GitHub