# File lib/rubytter.rb, line 107 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.json_to_struct(http_request(@host, req)) end