Public Instance methods
basic_auth(user, password)
[show source]
# File lib/httpx/plugins/basic_auth.rb 22 def basic_auth(user, password) 23 authorization(Authentication::Basic.new(user, password).authenticate) 24 end