10
11
12
13
14
15
16
17
18
19
20
21
22
|
# File 'lib/icapps/translations/http.rb', line 10
def authenticated_response(path, is_json = false)
uri = URI("#{config.url}/#{path}")
puts "[VERBOSE] Connecting to url '#{uri}'.".colorize(:white) if options[:verbose]
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == 'https'
http.verify_mode = OpenSSL::SSL::VERIFY_NONE
request = Net::HTTP::Get.new(uri)
request.add_field 'Authorization', "Token token=#{config.project_key}"
response = http.request(request)
is_json ? JSON.parse(response.body) : response.body
end
|