See https://stackoverflow.com/questions/54727643/trailing-slashes-in-jekyll-github-pages-site-cause-404
1.8 KiB
layout | title | permalink | order |
---|---|---|---|
documentation | Adapters | /adapters/ | 2 |
The Faraday Adapter interface determines how a Faraday request is turned into a Faraday response object. Adapters are typically implemented with common Ruby HTTP clients, but can have custom implementations. Adapters can be configured either globally or per Faraday Connection through the configuration block.
{: .mt-60}
Built-in adapters
Faraday includes these adapters (but not the HTTP client libraries):
- Net::HTTP (this is the default adapter)
- Net::HTTP::Persistent
- Excon
- Patron
- EM-Synchrony
- HTTPClient
While most adapters use a common Ruby HTTP client library, adapters can also have completely custom impelmentations.
- Test Adapter
- Rack Adapter (link TBD)
External adapters
Adapters are slowly being moved into their own gems, or bundled with HTTP clients. Please refer to their documentation for usage examples.
Ad-hoc adapters customization
Faraday is intended to be a generic interface between your code and the adapter. However, sometimes you need to access a feature specific to one of the adapters that is not covered in Faraday's interface. When that happens, you can pass a block when specifying the adapter to customize it. The block parameter will change based on the adapter you're using. See each adapter page for more details.