Get Request JSON map[string]string{} 2 – Gin Gonic Golang Web Framework
Get Request JSON map[string]string{} 2 – Gin Gonic Golang Web Framework
Source Code
[sourcecode lang=”go” autolinks=”false” classname=”myclass” collapse=”false” firstline=”1″ gutter=”true” highlight=”1-3,6,9″ htmlscript=”false” light=”false” padlinenumbers=”false” smarttabs=”true” tabsize=”4″ toolbar=”false” title=”Source Code main.go”] // In this tutorial we will send json datapackage main
import "github.com/gin-gonic/gin"
func main() {
// create router/server
r := gin.Default()
// Get request
// 2 args = one is path/url , 2nd is callback
r.GET("/", func(c *gin.Context) {
// 2 args = one is statusCode, 2nd is data
c.JSON(200,
map[string]string{"Key": "Here is my value"})
})
r.Run() // lets run the server port:8080
}
[/sourcecode]
golang gingonic framework videos tutorials series
TAGS#
gin gonic tutorial
gin-gonic / examples
gin-gonic documentation
gin framework tutorial
gin web framework
gin router
golang gin context
gin router group
###Buy Me a Coffee https://www.buymeacoffee.com/khan1