mirror of
https://github.com/lostisland/faraday.git
synced 2025-10-05 00:05:35 -04:00
634 B
634 B
layout | title | permalink | hide |
---|---|---|---|
page | Net::HTTP Adapter | /adapters/net-http | true |
This Adapter uses the Net::HTTP client from the ruby standard library to make HTTP requests.
conn = Faraday.new(...) do |f|
f.adapter :net_http do |http|
# yields Net::HTTP
http.idle_timeout = 100
http.verify_callback = lambda do |preverify, cert_store|
# do something here...
end
end
end