viant / toolbox

Toolbox - go utility library
Apache License 2.0
197 stars 29 forks source link

Service Router ignores URL Encoding #48

Open dchoi-viant opened 1 year ago

dchoi-viant commented 1 year ago

https://github.com/viant/toolbox/blob/master/service_router.go#L127

Should most likely change to use either http.Request.Path or http.Request.URL.String() or similar.

Use case is when parameter wants to read reserved character. It is not possible to pass # via URL due to special client handling.