Class: Rack::OAuth2::Server::Authorize::Token::Request
- Inherits:
-
Request
show all
- Defined in:
- lib/rack/oauth2/server/authorize/token.rb
Instance Attribute Summary
Attributes inherited from Request
#verified_redirect_uri
Instance Method Summary
collapse
Methods inherited from Request
#verify_redirect_uri!
included
#attr_missing!
Constructor Details
#initialize(env) ⇒ Request
13
14
15
16
17
|
# File 'lib/rack/oauth2/server/authorize/token.rb', line 13
def initialize(env)
super
@response_type = :token
attr_missing!
end
|
Instance Method Details
#error_params_location ⇒ Object
19
20
21
|
# File 'lib/rack/oauth2/server/authorize/token.rb', line 19
def error_params_location
:fragment
end
|