mirror of
https://github.com/lostisland/faraday.git
synced 2025-10-06 00:03:36 -04:00
26 lines
485 B
Markdown
26 lines
485 B
Markdown
---
|
|
layout: page
|
|
title: "Excon Adapter"
|
|
permalink: /adapters/excon
|
|
hide: true
|
|
---
|
|
|
|
This Adapter uses the [excon][rdoc] gem to make HTTP requests.
|
|
|
|
```ruby
|
|
conn = Faraday.new(...) do |f|
|
|
# no custom options available
|
|
f.adapter :excon
|
|
end
|
|
```
|
|
|
|
## Links
|
|
|
|
* [Gem RDoc][rdoc]
|
|
* [Gem source][src]
|
|
* [Adapter RDoc][adapter_rdoc]
|
|
|
|
[rdoc]: https://www.rubydoc.info/gems/excon
|
|
[src]: https://github.com/excon/excon
|
|
[adapter_rdoc]: https://www.rubydoc.info/gems/faraday/Faraday/Adapter/Excon
|