In https://github.com/awslabs/aws-lambda-go-api-proxy/blob/3f6c8160ae0c22b0bd05b2e3a9122736f035c74b/core/requestALB.go#L126-L132 It would seem like the key and values in `req.MultiValueQueryStringParameters` are raw i.e. already query escaped so it should be ```diff - queryString += url.QueryEscape(q) + "=" + url.QueryEscape(v) + queryString += q + "=" + v ``` I'm not sure about `QueryStringParameters`
In
aws-lambda-go-api-proxy/core/requestALB.go
Lines 126 to 132 in 3f6c816
It would seem like the key and values in
req.MultiValueQueryStringParametersare raw i.e. already query escapedso it should be
I'm not sure about
QueryStringParameters