It’s an MbedTLS.jl option, so should work with either Requests or HTTP. With HTTP.jl, you’d do something like
using HTTP, MbedTLS
client = HTTP.Client(tlsconfig=MbedTLS.SSLConfig(false))
HTTP.get(client, url; options...)
It’s an MbedTLS.jl option, so should work with either Requests or HTTP. With HTTP.jl, you’d do something like
using HTTP, MbedTLS
client = HTTP.Client(tlsconfig=MbedTLS.SSLConfig(false))
HTTP.get(client, url; options...)