module HTTPX::Plugins::BasicAuth::InstanceMethods

  1. lib/httpx/plugins/basic_auth.rb

Methods

Public Instance

  1. basic_auth

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