Vinicius Carvalho
09/10/2019, 2:24 AMgetRequestUrl + getQueryString, I know how to obtain the path of a given route, and the query string, it's also possible to find the host, but I could not find a way to determine the full original request as in <scheme://host:<port>/path?query> Is it possible (even without port for now, at least scheme would be nice to have)Pavel Lechev
09/10/2019, 9:30 AMio.ktor.http.RequestConnectionPoint which is accessible from inside your routes via io.ktor.request.ApplicationRequest#local?Vinicius Carvalho
09/10/2019, 12:56 PM