Method: HttpHelper.get
- Defined in:
- lib/unit/utils/http_helper.rb
.get(url, headers:, params: nil, response_type: nil) ⇒ Object
10 11 12 |
# File 'lib/unit/utils/http_helper.rb', line 10 def self.get(url, headers:, params: nil, response_type: nil) make_request(Net::HTTP::Get, url, headers, params: params, response_type: response_type) end |