Description

The function c.Request.URL.Query() return an map[string][]string with all queries parameters in request, i wanna know if its possible to do this with all path params?

Comment From: Gasoid

you can get list of Params

for param := range c.Params {
    fmt.Println(param.Key, param.Value)
}
// or
c.Params.Get("key")

Comment From: ffelipelimao

perfect! works here! thanks!!