Skip to content

Latest commit

 

History

History
30 lines (25 loc) · 657 Bytes

authentication.md

File metadata and controls

30 lines (25 loc) · 657 Bytes
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