class RHC::Rest::HTTPClient

An instance of HTTPClient that will support deferred Basic credentials and allow token challenges.

Public Class Methods

new(*args) click to toggle source
# File lib/rhc/rest/httpclient.rb, line 28
def initialize(*args)
  super
  @www_auth = WWWAuth.new
  @request_filter = [proxy_auth, www_auth]
end