hi there, does anyone know how to get full url from http request representation?
like {:url “<http://example.com>” :query-params {:a 2}} -> “<http://example.com?a=2>”
. I need to sign the request and need exactly the request that aleph then’ll send
I’ve found (.getUri (aleph.http.core/ring-request->netty-request req))
, but it works with ring like requests and I didn’t find any function that can convert my http request to ring one
ended up with simple {:url (str “<http://example.com>&” (aleph.http.client-middleware/generate-query-string {:a 2}))}