Get Even More Visitors To Your Blog, Upgrade To A Business Listing >>

How to Consume POST Http Request in Goland In JSON

Tags: http request json

We will create Http Post type request using ECHO framework, restful request will consume third party POST API using golang http module. Http module help to create request to access GET/POST/DELETE type method request.We will create json data to send post data to rest api and get response as a json data.

We will import following packages into server.go file,

import (
	"github.com/labstack/echo"
	"github.com/labstack/echo/middleware"
	"net/http"
	"fmt"
	"test-api/controllers"
)

We will run below command to get all packages,
go get

We will create group of api and rest end points into main method of server.go file,

v1 := e.Group("/api/v1")
v1.POST("/addUser", controllers.AddUser)

We will create model interface into models/types.go file,

package models

type User struct {
   Fname   string `json:"first_name"`
   Lname string `json:"last_name"`
}
type Resp struct {
    Code                    int      `json:"code"`
    Message                 string      `json:"message"`
}

We have mapped posted json first_name key with Fname and last_name to Lname.

We will create User.go file into project/controllers folder and create method to call third party api using HTTP post.

package services
import (
   "net/http"
   "fmt"
   "test-api/models"
   "encoding/json"
   "bytes"
)
func AddUser() models.Resp {
   res := new(models.User)
   var jsonData = []byte(`{"first_name":"`+res.Fname+`", "last_name":"`+res.Lname+`"}`)
   client := &http.Client{}
   req, err := http.NewRequest("POST", "http://localhost/add_user/", bytes.NewBuffer(jsonData))
   req.Header.Set("Content-Type", "application/json")
   resp, er := client.Do(req)
   fmt.Println(resp.Body)

   if er != nil{
      log.info("Error in reqeust send")
   }

   if err != nil{
      log.info("Error in reqeust create")
   }
   defer resp.Body.Close()
   
   fmt.Println(resp.StatusCode)
   if resp.StatusCode == 200{
      log.Info("Successfully! Added User")
 
   }
   var data models.Resp
   if err := json.NewDecoder(resp.Body).Decode(&data); err != nil {
      fmt.Println(err)
   }
   
   return data
}

Imported http packages to send request, models to access struct interface, json package to encode/decode json data into go application and bytes package use to implements functions for the manipulation of byte slices.

Created AddUser() method and return json response as models.Resp type, we have mapped posted json data to models.User struct, then converted into bytes to send data into POST Body.We have created HTTP POst request using golang http package NewRequest method that have three parameters: HTTP method type, url and body data parameters.

I have set Content-Type into request header using req.Header.Set() method, finally send request using client.Do(req) method, that have request instance as parameter, We are storing success data into resp and error into er variable.

If the request has been successfully completed, then we will get HTTP 200 status code and response mapped to data variable and return to requester, Now open command line and reach your project folder, run below command,
test-api$ go run server.go

You will get message server is running if every thing is fine and access api/v1/addUser using rest client like Postman etc.

I hope its help you.

The post How to Consume POST Http Request in Goland In JSON appeared first on Rest Api Example.



This post first appeared on Rest Api Example, please read the originial post: here

Share the post

How to Consume POST Http Request in Goland In JSON

×

Subscribe to Rest Api Example

Get updates delivered right to your inbox!

Thank you for your subscription

×