class OAuth2::Strategy::Implicit
@see datatracker.ietf.org/doc/html/draft-ietf-oauth-v2-26#section-4.2
Public Instance Methods
Source
# File lib/oauth2/strategy/implicit.rb 27 def get_token(*) 28 raise(NotImplementedError, "The token is accessed differently in this strategy") 29 end
Not used for this strategy
@raise [NotImplementedError]
Private Instance Methods
Source
# File lib/oauth2/strategy/implicit.rb 33 def assert_valid_params(params) 34 raise(ArgumentError, "client_secret is not allowed in authorize URL query params") if params.key?(:client_secret) || params.key?("client_secret") 35 end