faraday/docs/middleware/request/authentication.md

652 B

layout title permalink hide next_name next_link top_name top_link
documentation Authentication Middleware /middleware/authentication true Multipart Middleware ./multipart Back to Middleware ./list

Basic and Token authentication are handled by Faraday::Request::BasicAuthentication and Faraday::Request::TokenAuthentication respectively. These can be added as middleware manually or through the helper methods.

Basic Authentication

Faraday.new(...) do |conn|
  conn.basic_auth('username', 'password')
end

Token Authentication

Faraday.new(...) do |conn|
  conn.token_auth('authentication-token')
end