Go: Get path parameters from http.Request

If you don’t want to use any of the multitude of the available routing packages, then you need to parse the path yourself: Route the /provisions path to your handler http.HandleFunc(“/provisions/”, Provisions) Then split up the path as needed in the handler id := strings.TrimPrefix(req.URL.Path, “/provisions/”) // or use strings.Split, or use regexp, etc.

tech