crul icon indicating copy to clipboard operation
crul copied to clipboard

Support different url modifiers

Open sckott opened this issue 9 years ago • 1 comments

port, scheme, etc.

sckott avatar Dec 23 '16 17:12 sckott

right now like

HttpClient$new(url = "https://httpbin.org")$get(path = "get")

possibly allow different way to set these:

HttpClient$new(scheme = "https", base = "httpbin.org", port = 8983)$get(path = "get")

but seems faraday and requests both don't do this fine grain url setting other than for proxies, so maybe not, leave open for now

sckott avatar Oct 02 '17 18:10 sckott