-
Notifications
You must be signed in to change notification settings - Fork 117
New issue
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
No TLS/SSL CA verify #403
Comments
Thank you for the report. It's this: Req.get!(
"https://self-signed.badssl.com",
connect_options: [transport_opts: [verify: :verify_none]]
) The place to document this would be |
I think that would be useful, especially if there are enough keywords in the docs that someone searching would be able to find that section. Currently, even if you know you need to look under
The option can be inferred by reading the docs of the following option. So yes, I think adding that would help substantially. Thank you for the rapid response! |
I would also add, a few of the keywords that could help for those searching might be: |
@jmwilkinson Agreed. A PR would be appreciated! |
Req
appears to rely onFinch
, which in turn relies onMint
.Within this chain of dependencies, it is unclear how to ignore TLS/SSL verification.
Being able to run insecure HTTPS requests is an important step of prototyping and early development, before official TLS certs etc. have been procured. It would be very useful to know how to do this within
req
.The text was updated successfully, but these errors were encountered: