class Rack::OAuth2::Server::Authorize::Extension::CodeAndIdToken::Request

Public Class Methods

new(env) click to toggle source
Calls superclass method
# File lib/rack/oauth2/server/authorize/extension/code_and_id_token.rb, line 20
def initialize(env)
  super
  @response_type = [:code, :id_token]
  attr_missing!
end

Public Instance Methods

error_params_location() click to toggle source
# File lib/rack/oauth2/server/authorize/extension/code_and_id_token.rb, line 26
def error_params_location
  :fragment
end