# File lib/rack/oauth2/server/authorize/request_with_connect_params.rb, line 12
    def initialize(env)
      super
      CONNECT_EXT_PARAMS.each do |attribute|
        self.send "#{attribute}=""#{attribute}=", params[attribute.to_s]
      end
      self.prompt = Array(prompt.to_s.split(' '))
      self.max_age = max_age.try(:to_i)
    end