We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have a helper proc like this:
import reactor/async, reactor/http/httpclient, reactor/http/httpcommon proc get*(url: string): Future[void] {.async.} = let resp = await request(newHttpRequest(httpMethod="GET", url = $url).get) let data = await resp.dataInput.readUntilEof() echo data get("https://httpbin.org/get").runMain()
But if I try to send an HTTPS request, httpbin.org would answer that this request was an HTTP request, rather than HTTPS.
The text was updated successfully, but these errors were encountered:
Did you build with -d:ssl ?
Sorry, something went wrong.
@aguspiza I don't remember, it was more than 2 years ago :)
No branches or pull requests
I have a helper proc like this:
But if I try to send an HTTPS request, httpbin.org would answer that this request was an HTTP request, rather than HTTPS.
The text was updated successfully, but these errors were encountered: