This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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() | |
} |