# File lib/rubytter/oauth_rubytter.rb, line 10
  def get(path, params = {})
    path = path_prefix + path + '.json'
    param_str = to_param_str(params)
    path = path + '?' + param_str unless param_str.empty?
    parse_response(@access_token.get(path, @header))
  end