# File lib/rubytter.rb, line 119 def get(path, params = {}) path += '.json' param_str = '?' + self.class.to_param_str(params) path = path + param_str unless param_str.empty? req = create_request(Net::HTTP::Get.new(path)) self.class.structize(http_request(@host, req)) end