I\'m using the http
package from Go to deal with POST request. How can I access and parse the content of the query string from the Request
object ? I can
There are two ways of getting query params:
In second case one has to be careful as body parameters will take precedence over query parameters. A full description about getting query params can be found here
https://golangbyexample.com/net-http-package-get-query-params-golang