module HTTPX::Plugins::DigestAuth

  1. lib/httpx/plugins/digest_auth.rb

This plugin adds helper methods to implement HTTP Digest Auth (datatracker.ietf.org/doc/html/rfc7616)

gitlab.com/os85/httpx/wikis/Auth#digest-auth

Methods

Public Class

  1. extra_options
  2. load_dependencies

Constants

DigestError = Class.new(Error)  

Public Class methods

extra_options(options)
[show source]
   # File lib/httpx/plugins/digest_auth.rb
14 def extra_options(options)
15   options.merge(max_concurrent_requests: 1)
16 end
load_dependencies(*)
[show source]
   # File lib/httpx/plugins/digest_auth.rb
18 def load_dependencies(*)
19   require_relative "auth/digest"
20 end