mirror of
https://github.com/lostisland/faraday.git
synced 2025-11-22 00:08:56 -05:00
706 B
706 B
| layout | title | permalink | hide | prev_name | prev_link | top_name | top_link |
|---|---|---|---|---|---|---|---|
| documentation | HTTPClient Adapter | /adapters/httpclient | true | EM-Synchrony Adapter | ./em-synchrony | Back to Adapters | ./ |
This Adapter uses the httpclient gem to make HTTP requests.
conn = Faraday.new(...) do |f|
f.adapter :httpclient do |client|
# yields HTTPClient
client.keep_alive_timeout = 20
client.ssl_config.timeout = 25
end
end