def get(headers = {}, path = '', parameters = {})
      full_path = [path, URI.encode_www_form(parameters)].join(PARAM_STARTER)
      uri = URI.parse("#{@url}#{full_path}")
      request = Net::HTTP::Get.new(uri.request_uri)
      request.body = nil