Class: NewDemoApiClient::AsyncRequestClient
- Inherits:
-
Object
- Object
- NewDemoApiClient::AsyncRequestClient
- Defined in:
- lib/requests.rb
Instance Attribute Summary collapse
- #base_url ⇒ String readonly
- #conn ⇒ Faraday readonly
- #default_environment ⇒ String readonly
- #token ⇒ String readonly
Instance Method Summary collapse
- #get_headers ⇒ Hash{String => String}
- #get_url(request_options: nil) ⇒ String
- #initialize(token:, base_url: nil, environment: NewDemoApiClient::Environment::DEFAULT, max_retries: nil, timeout_in_seconds: nil) ⇒ NewDemoApiClient::AsyncRequestClient constructor
Constructor Details
#initialize(token:, base_url: nil, environment: NewDemoApiClient::Environment::DEFAULT, max_retries: nil, timeout_in_seconds: nil) ⇒ NewDemoApiClient::AsyncRequestClient
70 71 72 73 74 75 76 77 78 79 80 81 82 83 |
# File 'lib/requests.rb', line 70 def initialize(token:, base_url: nil, environment: NewDemoApiClient::Environment::DEFAULT, max_retries: nil, timeout_in_seconds: nil) @default_environment = environment @base_url = environment || base_url @token = "Bearer #{token}" @conn = Faraday.new do |faraday| faraday.request :multipart faraday.request :json faraday.response :raise_error, include_request: true faraday.adapter :async_http faraday.request :retry, { max: max_retries } unless max_retries.nil? faraday..timeout = timeout_in_seconds unless timeout_in_seconds.nil? end end |
Instance Attribute Details
#base_url ⇒ String (readonly)
58 59 60 |
# File 'lib/requests.rb', line 58 def base_url @base_url end |
#conn ⇒ Faraday (readonly)
56 57 58 |
# File 'lib/requests.rb', line 56 def conn @conn end |
#default_environment ⇒ String (readonly)
62 63 64 |
# File 'lib/requests.rb', line 62 def default_environment @default_environment end |
#token ⇒ String (readonly)
60 61 62 |
# File 'lib/requests.rb', line 60 def token @token end |
Instance Method Details
#get_headers ⇒ Hash{String => String}
92 93 94 95 96 |
# File 'lib/requests.rb', line 92 def get_headers headers = { "X-Fern-Language": "Ruby", "X-Fern-SDK-Name": "test_sdk", "X-Fern-SDK-Version": "0.0.4" } headers["Authorization"] = ((@token.is_a? Method) ? @token.call : @token) unless @token.nil? headers end |
#get_url(request_options: nil) ⇒ String
87 88 89 |
# File 'lib/requests.rb', line 87 def get_url(request_options: nil) &.base_url || @default_environment || @base_url end |